keyboard-shortcuts

Keyboard command to select the details view in xcode?

I'm trying to minimize how much I use the mouse in xcode. Something that would really help me is the ability to navigate through files in the detail view with the keyboard. I know I can use the up/down arrows to navigate through them once one of the files in the detail view is selected, but I don't know how to select one of them without ...

Keyboard shortcut for SQL 2008 Management Studio?

Hello, im missing Backspace shortcut key from SQL MS 2005 for Up button in Object Explorer Details in 2008 version. My Google can't find it :) so my question is: Is there keyboard shortcut for Up button in Object Explorer Details in SQL 2008 Management Studio? ...

Is there a way to delete a line in Visual Studio without cutting it?

I want to delete a line just like hitting ctrl+x without anything selected, but without saving the line to the copy stack. Is this possible? This is using Visual Studio 2010. ...

How to delete /* and */ quickly in XCode

In XCode there are some useful functions commented out with /* and a corresponding */. Is there a shortcut that will quickly remove these? Can a shortcut be made using AppleScript, or is there a better way? ...

Is there a keyboard shortcut to cycle through open documents in Geany?

I have multiple documents open in Geany. I can see them listed in the sidebar under the "Documents" tab. Ctrl + Tab switches me from the current document to the previous but I don't know of any way to cycle through the documents in a sequence. Can this be done using Geany? Is there a plugin for this by any chance? ...

VB.Net Keyboard Shortcut to auto-generate a Property

As the title suggests I am looking for the key sequence to generate the standard Property syntax in a vb.net class. Example below so there is no confusion on what I am asking for. Thanks in advance! Public Property MyProperty() As String Get Return _MyProperty End Get Set(ByVal value As String) ...

Case-sensitive keyboard shortcuts

I'd like some map/remap/nmap/etc. commands to be case sensitive, e.g. "<C-I>" vs. "<C-i>". I checked Google and :help map, but was unable to find this. ...

What is the equivalent of option/alt + left/right arrow on debian but on a Mac OS X?

As the title says... It's been annoying me forever that I can't skip over words when writing in the Mac terminal (it works when im logged into Debian via ssh on the Mac terminal) I get '[D' on Mac instead of jumping a word left. ...

What is the shortcut in IntelliJ IDEA to find method / functions?

I know that CTRL+N is to find classes and it is very useful. But what about methods? ...

Useful features of WingIDE?

I'm trying out WingIDE as a Python IDE. What are the most useful features? ...

Does anyone know a visual studio keyboard short cut to swap around two sides of a statement?

Hi guys, Just wondering if anyone knows the keyboard shortcut to swap around two sides of a statement. For example: I want to swap firstNameTextbox.Text = myData.FirstName; to myData.FirstName = firstNameTextbox.Text; Does anyone know the shortcut, if there is one? Obviously I would type them out, but there is a lot of st...

How to reset all keyboard shortcuts in notepad++?

I have removed the shortcut for SCI_DELETEBACK and as such my backspace key now outputs a backspace character rather than actually deleting characters. For whatever reason, it's not possible to re-assign this key (probably because they've assumed no-one will be stupid enough to try and change it) so now I'm stuck. Ideally I'd like to r...

changing triggering order of conflicting shortcuts of menu items

I'm assigning same shortcuts to several menu items, and i need to control their priority. for example i'm assingin F3 for subitem in second menu item, then assigning F3 for subitem in first menu item. When I press F3, the onclick action triggers only for second menu item, and i don't know how to change this order. Changing order of menu ...

Visual Studio - how do you use it without touching your mouse?

Hello, I am going to be doing the codekata defined on Roy Osherove's blog HERE. One of the rules is that you cannot use the mouse while doing the kata. Today, my first attempt at doing the kata I have spent the whole time trying to better understand how to use VS without the mouse. I have learned that CTL-ALT-A will be my friend ...

Is there a commonly used keyboard shortcut for 'Fit to Window'?

Is there a commonly used keyboard shortcut to fit content to the current window size? Say you have a zoomable canvas and have the feature to automatically zoom and position the content to fit to the current window size. What keyboard shortcut would be best? Interested for both Mac and Windows. ...

Capturing logcat on android x86

iam running android 2.2 (froyo) on a x-86 based PC. How can I capture a logcat on the terminal console and save it to any specific location within the android, say notepad ? Whats is the keyboard command for it ? What are the other generic keyboard shortcuts for android x-86? ...

Remap RagTag Shortcuts Vim

I just switched to vim as my default editor and I am trying to remap the ragtag shortcuts for <%= %>, <% %> and auto-close tag to custom shortcuts: E.g. the ragtag shortcut for <%= %> is <C-X>=. I tried to remap with: inoremap <leader>, <C-X>= But this just prints the = sign to the current buffer. And there does not seem to be ragtag...

Are there any keyboard shortcuts for formatting in Python?

After we write a code in Matlab we can use ctrl+A+ctrl+I and ctrl+A+ctrl+J to format our code (comments, loops alignment etc). Is there something similar or any helpful keyboard shortcuts in Python? Also, just like we can use upward arrow to copy our previous command window history in Matlab, is it possible or some keyboard shortcut to ...

Prevent Java Applet from gaining Focus

An applet gains focus when loaded, preventing browser keystrokes from working. You can work around this by adding a parameter to the applet tag: name="initial_focus" value="false" So far so good. But when the user clicks on the applet even if the applet does not have any user interface controls, then the problem remains. I guess anoth...

Opening jQuery UI dialog with a keyboard shortcut puts the key pressed into the dialog's form

I have a form inside a jQuery UI dialog. The dialog is set to open whenever the "t" key is pressed. The problem is, when this happens, the letter "t" gets inserted into the first input of that dialog's form, which I don't want to happen. Here's the code I have: $('#addtime-form').dialog({ minWidth: 351, modal: true, autoOpen: fal...