I've recently migrated from Eclipse to Android Studio and I had several problems which i mostly solved. One, which I don't have any idea to do with is, that the opening bracket shortcut AltGr+B is not doing anything.
I've tried to:
In Settings…
I followed along with the discussion in this question: Auto indent code in Atom editor but couldn't get mine to work. :(
I have this in my keymap.cson file:
'.editor':
'ctrl-i': 'window:toggle-invisibles'
'ctrl-t': 'editor:toggle-indent-guide'
…
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.
(my-minor-mode-bindings-for-mode 'some-mode '(key1 key2…
I want to create my own skin for Android Emulator. I have photo shopped some of the images for the skin.
There are some additional buttons which I need map so that on clicking it a specific event should be generated.
The layout file in my…
I heard you can set a key binding to handle deleting all comments in a file in Sublime Text 3. However, I'm having some difficulty understanding it though the Sublime Text Docs.
Any suggestions how to set this up in the default (OSX).sublime-keymap…
I am trying to get this pinyin keymap to load into vim.
I have placed this file into ~/.vim/keymap/pinyin.vim.
Questions
How do I load this file automatically through a command in ~/.vimrc?
How do I turn this mode on/off?
How do I actually invoke…
I'm trying to update my keymap.cson file so that JavaScript source is indented slightly differently. I do not want it to de-indent case and default statements in a switch.
By default, Atom will format this way:
switch(x) {
case 1:
//stuff
case…
It seems that in ReSharper or IntelliJ Idea you can expand selection from expression to method to surrounding block etc. This should be possible to do via ctrl-W, but that does not seem to work in WebStorm on my Mac. Is there a way to do it or is…
I'm using Pycharm CE on OSX, and the Cmd+Backspace behaviour is really strange: It does some kind of combination of "delete to beginning of line" and "delete line", which seems to vary depending on the context.
How can I configure Pycharm to have…
Is there a keymap for IntelliJ on Mac which does not override or is not overridden by system shortcuts ? This Control+Space for autocompletion really pisses me off. I think it's disrespect to os x environment.
so i'm trying to configure vim (on windows 8.1) to take notes and i would like to configure F2 to add a date and time stamp and F3 to insert a line of '==================================='.
i've achieved success by using these lines in my…
I am using fedora 20 and learning ncurses programming by studying example programs. I have reached one in NCURSES Programming HOWTO (listed below from my file "border.c", see note) that should exit on pressing function key F1: instead it gives me a…
I have the following keymappings in my vimrc
nmap :Q :q
nmap :W :w
nmap :WQ :wq
However, they do nothing. Vim complains that Q isn't a valid command. Same for W and WQ. I restarted vim and everything. I'm trying to figure…