Tagged Questions
The remap tag has no wiki summary.
8
votes
4answers
504 views
Color similarity/distance in RGBA color space
How to compute similarity between two colors in RGBA color space? (where background color is unknown of course)
I need to remap RGBA image to a palette of RGBA colors by finding best palette entry ...
8
votes
5answers
1k views
Why is so complicated to remap Esc to CAP LOCK in Vim?
I saw the vim wiki tips and it says that in order to remap Esc to CAP LOCK you have to edit the following windows code:
REGEDIT4
[HKEY_CURRENT_USER\Keyboard Layout]
"Scancode ...
6
votes
1answer
979 views
Override Caps Lock with Ctrl using C#
I'm writing (yet another, I know) keyboard remapper using C# and Visual Studio 2008.
I followed this guide to learn how to snap up low-level key presses. This works just fine for overriding e.g. ...
3
votes
2answers
121 views
vim change :x function to delete buffer instead of save & quit
I want to set :x in vim gui-mode to delete buffer because I always kill the whole gvim, which is kind of annoying. I know i can specifically set gui problems with if has("gui running") but don't know ...
3
votes
4answers
292 views
Remap or Map function in Javascript
Of late, most of my programming experience has been in Processing, and more recently I have been wanting to branch out a little deeper in to some Javascript, since they are slightly related.
I was ...
3
votes
2answers
639 views
Visual Studio 2010: How Can I remap F2 to Rename File rather than Open Object Browser
In Visual Studio 2010 Solution Explorer tree view, how can I remap the F2 key to Rename the Selected File rather than open Object Browser?
3
votes
4answers
2k views
How to remap keys when in Emacs?
I am looking for a way to have my control key and caps-lock key switched when I am in the emacs window, but when I go to any other program such as Firefox I want to be able to use the normal control ...
2
votes
2answers
59 views
vim - remapping >> << (indent commands)
I would love to map << and >> to single keys to speed up my workflow, but I can't find any info on how to write the remap in my vimrc. Any idea how I can get my remap on?
2
votes
1answer
523 views
Is there any way to swap the fn (function) and control keys in linux on an macbook pro?
I don't care if this is done in the bios or a kernel module or software. Is there any way at all to do make the 'fn' key act as 'control' and the 'control' key act as 'fn' in linux running on a ...
2
votes
1answer
30 views
How do I design my software for remappable short-cut keys?
I've just started on a GUI application which will feature several distinct modes and a large number of keyboard shortcuts. Ideally I'd like to support letting the user remap these, like in eclipse. ...
2
votes
1answer
134 views
Color Remapping - Matching target palette using a 3D grid?
Let's say I have color 'FOO', and it is stored in RGB format. I need to recolor 'FOO' so it matches the closest color in a list of colors. Doing this on the fly, couldn't I view the RGB values from ...
2
votes
3answers
270 views
What is the best way to remap a Hash in Ruby?
Is there a simple way of remapping a hash in ruby the following way:
from:
{:name => "foo", :value => "bar"}
to:
{"foo" => "bar"}
Preferably in a way that makes it simple to do this ...
1
vote
3answers
65 views
_remap ignoring IS_AJAX call?
This issue is very likely codeigniter specific.
I have a controller called redirect.php that redirects from and to views. This controller for the most part has one public _remap function that does ...
1
vote
1answer
96 views
When I load PIV in VIM it ruins my NERDTree and it ruins my leader key
I'm working my way into VIM. I've got Pathogen, NERDTree and snipmate running, now I want to get PIV going. When i throw it into my bundle dir it loads and when i open php files they are folded by ...
1
vote
0answers
132 views
Is there a built-in way to remap illegal characters in Samba when sharing with Windows?
I have a samba share set up in ubuntu. Many of the folders and filenames contain : which is an illegal character in Windows. Samba's default action when dealing with illegal characters is to mangle ...
1
vote
1answer
124 views
IKVM complex custom type error in remapping to properties!
I used the above and wrote this:
<class name="umple.pts.domain.coreEntities.Stop">
<property name="StopName" sig="()Ljava.lang.String;">
<getter name="getName" ...
1
vote
1answer
115 views
String and complex data types in Map.xml for IKVM!
I am using IKVM to transform my java .jar file to a .NET .dll file.
I can create a property from the getter and setters of integer types ..
But am not able to do so for string data type in the java ...
1
vote
6answers
380 views
Favorite Visual Studio keyboard remappings?
Stack Overflow has covered favorite short-cuts and add-ins, optimizations and preferences -- great topics all. If this one has been covered, I can't find it -- so thanks in advance for the link.
What ...
1
vote
3answers
96 views
What programmer-specific function can the old Esc do?
I've recently re-remapped my tilde/backtick to Escape (that's how at least I originally learned) and put the tilde/backtick in the left-Windows key (again how I originally learned).
That floating Esc ...
1
vote
2answers
310 views
How to disable a built-in command in vim
In vim, when I hit :wq it is almost always an accident that occurred when attempting to input :w. I would like to disable :wq.
The closest I found is cmap, but it has some odd behavior. If I do ...
0
votes
0answers
12 views
OSX: Programmatically remap Caps Lock's functionality (as set via System Preferences)?
My question is referring to the System Preferences setting that enables you to remap Caps Lock to e.g. Ctrl key, or any system-native alternative facilities (if any?) of achieving the same remapping.
...
0
votes
2answers
49 views
Route all actions of a controller except one in codeigniter
I am doing a project in CodeIgniter and I want to route all the urls of a particular controller to a specific action except one. For e.g.,
I want the url
myurl/mycontroller/myaction
to be handled ...
0
votes
0answers
76 views
Win->Alt key remapping in AutoHotKey can not work well
I wrote a AutoHotKey script to remap LWin to LAlt
LWin::LAlt
LWin & Tab::AltTab
LWin+Tab works OK. But I found, for example in my emacs, LWin+b can not work as Alt+b. And if I disable this ...
0
votes
2answers
71 views
Remap Capslock Key in Keymando?
Can you remap the CapsLock key in Keymando?
CapsLock is listed as an available key but when I try a test like:
map "<CapsLock-j>" { alert("CapsLock-j") }
... and hit Reload Config in the ...
0
votes
1answer
79 views
Autohotkey macro: trying to remap left-alt to left-win; left-win to left-win with a toggle
I am trying to remap Left Alt to Left Win and Left Win to Left Alt in AutoHotKey.
But I also want to have Shift + F11 to toggle these two remaps.
I know I can do:
LAlt::LWin
LWin::LAlt
but ...
0
votes
1answer
672 views
emgu cv CvInvoke.cvRemap hangs when trying to udistort from stereo calibration data
I'm trying to implement a stereo camera calibration app using emgu cv.
My problem is when I try to use CvInvoke.cvRemap to undistort an image the function just hangs. No errors or crashes, it just ...
0
votes
1answer
145 views
Using _remap with dynamic URL segments
I'm using _remap:
function _remap( $method )
{
// $method contains the second segment of your URI
switch( $method )
{
case 'hello':
...
0
votes
1answer
281 views
Codeigniter: '_remap' second parameter (should be url segment) is returning empty?
I have a problem. I have overriden CI’s default call to method by using a ‘_remap’ function. It all works as I should when I pass one parameter, which is of course the overriden method, (the second ...
0
votes
3answers
421 views
Remap rotation matrix to different axis system
I am using an adapted version of android's getRotationMatrix in a c++ program that reads the phone's sensor data over the network and calculates the device's matrix.
The function works fine and ...
0
votes
0answers
237 views
How can I tweak the existing Arabic Keyboard on the iPhone 4, 4.2.1?
I work in a language which uses an Arabic alphabet, but the existing Arabic keyboard doesn't have at least 5 of the characters I need (the same token it has a whole slew of characters my language ...
0
votes
1answer
134 views
IKVM java.util.List error in remapping to properties!
Domain: Public Transportation System
Language: Java
Tool: IKVM
I have a class Line which has a list of Stop.
A function getStops returns a List<Stop>.
To remap the List in the class as a .NET ...
0
votes
1answer
434 views
How to remap physical keyboard, or to change Android OS to another language
Hello all
I have a Desire Z Android 2.2 English with psysical keyboard.
I need to have three local characters on the physical keyboard.
I can certainly access them via longpress and choose on touch ...
0
votes
3answers
511 views
vim key mapping reference
I've just installed the command-t plugin and what to map it to cmd-t instead of leader-t. I'm fairly new to vim and I don't know what the symbols are for the key mappings. Where can I find a reference ...
0
votes
2answers
132 views
emacs: remapping C-[ (currently ESC)
I'm using emacs 23 on ubuntu 10.04. I would like to remap the "C-[" binding. Currently, when I press it, it gives me "ESC". Is there a way to remap it?
0
votes
1answer
288 views
Amazon, AWS - What is a remap and how to calculate the costs
i got the first report for my account activity. the costs for remapping the elastic ip are quite expensive in relation to the cpu hours.
my instance is running from 8 to 21 from monday to friday and ...
0
votes
9answers
806 views
When using Emacs do you rebind caps-lock to CTRL? [closed]
This question is, as indicated, for those who use Emacs.
When you do, do you rebind the caps-lock key to CTRL, or do you use the "normal" ctrl key?
I've recently learned some Emacs commands and was ...
0
votes
1answer
4k views
Is there a good workaround to the Oracle IMPDP REMAP_SCHEMA issue with triggers (ORA-39083, ORA-00942)?
One can use the Oracle data pump import tool (IMPDP.EXE) to import one schema into another using the REMAP_SCHEMA option. However there is an issue in that triggers are not properly remapped. This ...
0
votes
2answers
1k views
How to remap “Context Menu” key in Mac OS X?
I have a Logitech keyboard (Ultra-Flat Keyboard Dark Shine to be exact), which has the context menu key in the middle of the windows and alt key, which is quite annoying.
Here's a screenshot of where ...
0
votes
4answers
3k views
Vim: remap key to toggle line numbering
I've added:
set number
nnoremap <F2> :set nonumber!
to my vimrc file. Basically what it's supposed to do is let me press to toggle line numbering but it's not working. What have I done ...