keyboard-shortcuts

Configure Eclipse to use VS.Net shortcuts?

点点圈 提交于 2019-11-29 01:23:59
I've started doing some Python Programming using Eclipse. However, I'm a .Net programmer and I'm use to the keyboard shortcuts in VS.Net 2008. Is there any quick way to reconfigure VS.Net to use the visual studio shortcuts. I've found this other question , but the suggested methods don't work. I've installed CDT and selected the Visual Studio Keys, but it doesn't seem to change any of the key mappings. That's strange because after installing the C/C++ Development Tools (CDT): alt text http://img39.imageshack.us/img39/4002/screenshot001ey.png And picking up the Microsoft Visual Studio scheme

Detect a double key press in AutoHotkey

这一生的挚爱 提交于 2019-11-29 01:06:12
I'd like to trigger an event in AutoHotkey when the user double "presses" the esc key. But let the escape keystroke go through to the app in focus if it's not a double press (say within the space of a second). How would I go about doing this? I've come up with this so far, but I can't work out how to check for the second escape key press: ~Esc:: Input, TextEntry1, L1 T1 endKey=%ErrorLevel% if( endKey != "Timeout" ) { ; perform my double press operation WinMinimize, A } return Matthew Lock Found the answer in the AutoHotkey documentation ! ; Example #4: Detects when a key has been double

disable shift key on startup in ms-access

只愿长相守 提交于 2019-11-29 00:29:04
Problem: In MS Access you can hold the shift key when opening a database in order to bypass Startup options and the AutoExec Script. I want to disable this permanently . First of all I know this has been answered on numerous other sites, however I could not find a question about it here, but I have a slightly different need.The solutions I found were focused on placing invisible buttons to re-enable the shift-key shortcut with passwords etc. I want a very simple solution . I want a script I can add to my AutoExec script to disable the shift-key shortcut or something like that. I DO NOT need a

Eclipse, shortcut to create new Java class

被刻印的时光 ゝ 提交于 2019-11-29 00:11:33
问题 Is it possible to assign a shortcut to go automatically on New Java Class Dialog? At the very beginning of a project when I am creating a lot of classes, it's quite annoying have to go through the ' New.. ' wizard. Here's the image of the dialog I want to reach. 回答1: Select Window -> Preferences -> General -> Keys and search for New (Class) . Click on Binding , press the keyboard shortcut you want, and click OK to configure the shortcut. 回答2: Press alt+shift+n it will give you a context menu

How can I add a custom command to Visual Studio?

倖福魔咒の 提交于 2019-11-28 23:12:47
There's an external command I'm using constantly - basically launching a batch file. I'd like to put a toolbar button (and possibly keyboard shortcut) for this into the IDE. Is there an easy way to do that? Kate Gregory First, add an item to your Tools menu by choosing Tools, External Tools, and filling out the dialog, like this: Then bring up Tools Customize, click the Keyboard button at the bottom, and find the appropriate external tool number: All the configured external commands in VS are available to add to a Toolbar or Menu through the Tools>Customize menu as "External Command ##". You

Visual Studio: Cycling through breakpoints

只愿长相守 提交于 2019-11-28 23:10:13
Is there a shortcut to cycle through my breakpoints? I often lose track of the breakpoints when debugging a project. When I finish working with one bug, I have to reset my breakpoints for a new bug that I am about to solve. It would be handy to have a keystroke that would allow me to cycle through the breakpoints and disable ones I don't need and keep the ones I need. Dror You can always open the breakpoints window ( Ctrl + Alt + B ) to cycle through them. Shane Powell I don't believe you can. You can display a list of all breakpoints and jump to them using the breakpoint view (Debug / Windows

JavaScript keyboard shortcuts for web application [closed]

早过忘川 提交于 2019-11-28 23:02:39
问题 I want to develop a web application, which should (ideally) be fully usable via the keyboard. I know how to handle keyboard events in JavaScript, but managing them for a larger application is quite boring. Is there a library which makes that process easier? Please note that I'm not interested in a full-blown Web GUI framework. I want to keep control over my webpage/application. 回答1: Check out my project: https://github.com/oscargodson/jkey And demos: http://oscargodson.github.com/jKey/ Feel

Eclipse - Run/Debug shortcut key doesn't work

孤者浪人 提交于 2019-11-28 22:33:51
In Eclipse I can only run/debug my project by using one of the menu buttons. Pressing F11 or Ctrl + F11 does nothing. I've mapped Debug Last Launched to all kinds of various keyboard shortcuts to see if another program running in the background was intercepting the key presses and that doesn't seem to be the case. Every other keyboard shortcut seems to work fine such as Ctrl + Shift + T or Ctrl + G . Any help? The shortcut key works on my other computer and I keep instinctively trying to press it and it's drastically slowing down my work efficiency. omer.dogan The only solution works for me ;

Jump to next error / code highlighted in red

倾然丶 夕夏残阳落幕 提交于 2019-11-28 22:03:34
问题 When dealing with merge conflicts it is common that the >>>>>> and ====== inserted by DCVS are syntactically incorrect for the file I'm in and show up as highlighted in red. When dealing with merge conflicts it would be useful to have commands to jump to these error. When I type :cnext I just get the message "No Errors". These are Mercurial merge conflicts so I can't use Fugitive, but I generally prefer editing merge conflicts by hand anyway. Is there a way to jump to the next syntax error in

Close all tabs, but not the window, in Sublime Text

送分小仙女□ 提交于 2019-11-28 21:51:42
问题 Is there a way to close all tabs in one go in Sublime Text, but leave the window with the current project open? It is really annoying when I just want to close all open file and start the new task I have to Cmd-W them one by one. If I do Cmd-Opt-W it will close all tabs and the current project. 回答1: Thanks to Alex, it turned out kind of simple, Preferences > Key Bindings > User: { "keys": ["super+shift+w"], "command": "close_all" } No need to restart Sublime, it works right away. And what's