Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
1answer
395 views

Remap Caps lock key to Esc in Mma 7

TLDR: How do I get CapsLock to translate to "ShortNameDelimiter" in Mma 7? I like pretty text in my mma notebooks, and often define functions as f[\[Alpha]_] =... so as to match the exact ...
8
votes
5answers
2k views

Programmer's VIM setup for Finnish/Swedish or other non-US keyboard layout

I've been recently learning some VIM hackery and I have learned a lot of useful commands and gotten pretty efficient at editing text with VIM. I'm using the Finnish qwerty keyboard layout (see image ...
8
votes
2answers
506 views

Using Vim with the Greek language

So I am giving Vim a serious try for coding my Python apps. However Vim is proving so flexible, I was thinking to use it as my main editor at work (lawyer/legal documents). The problem is that my ...
4
votes
2answers
491 views

mapping function keys in vim

I want to map my f2 for nerdtree with the following entry. map :NERDTreeToggle But even before that , and after saving the vimrc , whenever i press f2 , it jus switches the case of the letters on ...
4
votes
1answer
108 views

Assign a keymap to a derived mode in emacs

How can I assign a keymap to a derived mode in emacs (I am using the define-derived-mode function). There is a derived-mode-set-keymap function but without examples or good documentation.
4
votes
2answers
518 views

Use default KeyMap of native OS

In Java, by using non-default system look and feel we will have different keymap. For example I'm using Mac OS X and use Substance look and feel (non-default system look and feel). The effect is I'm ...
3
votes
1answer
154 views

Visual Studio ReSharper Keymap for IntelliJ IDEA

I primarily use Visual Studio and ReSharper (R#) for development and have excellent working knowledge of R#. I want to leverage that knowledge in IntelliJ IDEA (with my personal Java adventures) ...
3
votes
1answer
1k views

Keymap issues with NX from Mac OS X Lion

I tried to answer the question from Mark: Keymap issues with NX from Mac OS X Lion to Ubuntu However, it is locked so I figured I would post a new question / answer. I have been trying to answer ...
3
votes
1answer
732 views

Keymap issues with NX from Mac OS X Lion to Ubuntu

I have issues with the keymap of my NX session being garbled. I have a Macbook Air running OS X Lion. I use OpenNX to start a session with an Ubuntu server running FreeNX. The session type is Gnome. ...
3
votes
3answers
274 views

How Can I Override Visual Studio's Menu Accelerator Shortcuts?

I'm a Mac-based .Net developer so over the years I've got into the habit of remapping certain common functions to a more 'Macish' set of keyboard shortcuts: CUT: Ctrl + X => Alt + X COPY: Ctrl + C ...
3
votes
2answers
785 views

Is there a Visual Studio 2008 keymap profile for Netbeans?

I know there are keymap profiles for Eclipse and Idea that reflect the VS 2k8 key mapping / shortcuts experience quite well, but do you know where I can find one for my IDE of choice, Netbeans? Could ...
2
votes
1answer
94 views

Are keycodes consistent under linux

I'm currently trying to create a little C/C++ program which emulates a key-press on one of the Multimedia-Keys (e.g. "Pause/Play"). To simulate the keypress I used the XTestFakeKeyEvent-function from ...
2
votes
5answers
46 views

Vim: how to create key mapping to :edit and jump to last line?

I mapped key F2 to refresh (:edit) currently opened file. I'm using this when watching a log file to update the screen when file has been updated outside (new lines added at the end of a log file). ...
2
votes
1answer
59 views

creating sticky key mappings in vim

I have this in my vimrc file nnoremap <leader>k <C-u> I want to be able to continue to hold down the leader key, and just tap 'k' to scroll the screen as I like. But, at the moment, I ...
2
votes
2answers
775 views

Word jumping in iTerm2 or Terminal in OSX Lion

I recently upgraded from Snow Leopard to Lion and Xcode 4.1, and word jumping stopped working in both Terminal and iTerm2. Did the mappings change? This is with and without a homebrew installation of ...
2
votes
2answers
127 views

Maping a key based on the device the key is on? (Linux)

I own a Razer Naga Mouse, essentaly it has a small numpad on the side of it. I want to remap these keys to different unused keys or to bash commands. I can do this easily by using xev to grab the ...
2
votes
1answer
578 views

mapping already exists for ^I in vim

I have added the following lines to the vimrc file so that i could use s-tab for indenting map <esc>[Z <s-tab> ounmap <esc>[Z After i have added this , i get the following error. ...
2
votes
2answers
2k views

Mapping <C-Tab> in my vimrc fails in Ubuntu

I want to map ctrl-tab to :tabn, and ctrl-shift-tab to :tabp. I had it working for gVim in Windows XP, but moved it to my .vimrc in Ubuntu 9.10 and it doesn't work (vim 7.2). Here's the relevant ...
2
votes
3answers
132 views

Vim oddities in keymapping

I like to insert blank lines without entering insert mode and I used this keymapping: nomap go o <esc> This does create the blank line but introduces some weird behaviour. I have smart indent ...
1
vote
2answers
44 views

Remapping of vim direction keys is not honored by viewport navigation

I am using colemak and thus I have remapped my direction keys like so noremap n h noremap e j noremap i k noremap o l noremap h n noremap j e noremap k i noremap l o The problem is that these ...
1
vote
2answers
140 views

Certain key mappings not working in MacVim

I've recently switched to using a Mac at work from previously using Linux. I found out about MacVim (from http://code.google.com/p/macvim/) and have been trying to port over my previous keymappings. ...
1
vote
2answers
52 views

VIM: Referring to current buffer in key mappings

I would like to map a certain key mapping to make the Python interpreter run the current edited buffer in VIM. What I'm doing now (manually): :!python <FILENAME> But I'd like the ...
1
vote
1answer
50 views

In Eclipse Emacs mode, is there any way to remap or add the Alt key to the Esc key?

I'm used to the Emacs use of Esc for Metakey. In eclipse may I change the Esc key to be the Alt key?
1
vote
0answers
83 views

NetBeans IDE Keyboard Shortcut for Line Wrap Option

I use NetBeans IDE 7.0, and I am grateful that it has a "Line Wrap" option, but I don't usually want it on. I would like to have a keyboard shortcut so I can enabled on the fly as needed. Under ...
1
vote
1answer
448 views

Interpret zsh bindkey escaped sequences

I usually find interesting zsh keybinding settings (through bindkey command) around the web. My question is how do I interpret what these escaped sequences mapped to? For instance, here is a snippet ...
1
vote
2answers
120 views

reassign a new “character” to a key, so that it gets printed instead of the default letter for the key

I'm in the process of developing a text editor that has a "macro system," where the user can reassign values to the keys on their keyboard -- so that when they press the letter a, it might print the ...
1
vote
4answers
555 views

Which keymap for programmers? Dvorak? [closed]

Possible Duplicate: Keyboard layout Hi, I am fed up with qwerty keyboard for programming. I am looking for a more convinent keymap. I tried learning dvorak. I see there are lot of versions ...
1
vote
1answer
112 views

How to change the cursor keys in VIM

I'm trying to change the cursor keys in VIM from the normal h,j,k,l to the home position for typing j,k,l,;. Any suggestions on how to do that? Thanks in advance.
1
vote
3answers
221 views

Mode specific key bindings

I have a minor mode that also comes with a global mode. The mode have some key bindings and I want the user to have the posibility to specify what bindings should work for each mode. ...
1
vote
2answers
2k views

IntelliJ Macro menu

I've just started playing with macros in IntelliJ. I recorded several then played back until I decided to add keymap shortcuts to my macros. I went to Settings and pressed Alt+C to add a new child ...
1
vote
1answer
572 views

TextMate equivalent to gVim Ctrl+P

To auto complete a previously written string. Is it possible? EDIT I'm editing javascript/java if that matters.
1
vote
2answers
515 views

Why is psql inserting a tilde when I press any of the keys in the Home key cluster?

I'm using psql 8.2.3 on FreeBSD. Every time I press Insert, Home, Delete, End, Page Up or Page Down, a tilde (~) character is inserted instead of performing the expected function of the key. Why ...
0
votes
1answer
40 views

can you show me some example for the Keymap.js,(The Definitive Guide)?

function Keymap(bindings) { this.map = {}; // Define the key identifier->handler map if (bindings) { // Copy initial bindings into it for(name in bindings) this.bind(name, ...
0
votes
2answers
152 views

ExtJS 4 how to properly create a KeyMap for a window when using MVC

I have a simple ExtJS application that is written MVC style (much of my information from here). My application creates a viewport, and has a view with a form, some fields and a button. The ...
0
votes
2answers
63 views

macports vim with +keymap option

I've got a Mac OS X Lion. And there's a vim, that is installed from macports. Unfortunately, it lacks a +keymap option. Is there a way I can install vim from macports with this additional option? As ...
0
votes
2answers
52 views

Overriding ctrl+h in vim

I'm sorry, for some reason I'm having a lot of trouble figuring out how to map my backspace button to crtl+h in my vimrc file. I've looked a lot online, and haven't found anything that seems to work. ...
0
votes
1answer
79 views

In emacs with X, Edit->Copy is mapped to “<copy>” - what key is that on a Linux based PC?

In my Linux setup, Emacs has the Edit->Copy menu item mapped to -- what key is that? And where does it get that keyname definition from? Is that internal to emacs? Or does it get that further ...
0
votes
2answers
223 views

Vim: Open new explorer tab with the directory of the file your one currently selected

I'd like to open a new tab with the file explorer set to the directory of the file I have open, instead of the to the directory I am currently in. For example, If I do: ~: cd ~/dir1 ~/dir1: vim ...
0
votes
1answer
85 views

Using Visual Studio keymap in PyCharm. Looking for PDF

I sometimes write some Python code using PyCharm IDE official web site As a .NET developer I'm familiar with Resharper's keymap in VS, and I really like It. I found out that PyCharm supports VS ...
0
votes
2answers
326 views

VIM special chars without shift key

I write a lot of code and tired of pressing shift each time I need a special character. And since I use special chars much often, then numbers, I want to reverse shift behavior on them. So, if I ...
0
votes
2answers
284 views

Unidentifiable Vim Keymap

I'm trying to get rid of a pesky keymapping in vim, namely \c The mapping is only loaded for latex files, so it should be related to the latex-suite. It's annoying, because it can't type \cite ...