Dreamweaver shortcut to swap between source and dependent files - keyboard-shortcuts

Dreamweaver (CS 5.5) displays source code and dependent files as sub-tabs (?).
You can swap between tabs control+shift+tab, but how to swap between source and dependent files?

This issue has bothered me for a long time now, and I am pleased to say I have found a partial solution to it. There is no keyboard shortcut for switching between related (dependent) files, however there is a shortcut called "Go to Source Code", which by default is Ctrl+Alt+`.
Optional: This shortcut (and any other shortcut) can also be edited via the "Keyboard Shortcuts" menu which can be found under the "Edit" tab. To do so, from within said menu, choose the "Dreamweaver Standard" as the "Current set", and click the most left button amongst the 4 buttons at the top, called "Duplicate set". This will allow you to create a duplicate set of Shortcuts, with a name of your choice. Once that's done, you will be able to find the "Go to Source Code" shortcut by selecting "Document editing" from the "Commands" select box. This shortcut should be the second last. To change the keyboard sequence for it, click on it, insert a new "Press key", click the "Change" button and then the "OK" button to accept the changes.
As for switching to related files, this can be done via View->Related Files. This is clearly not nearly as instant as using a designated keyboard shortcut, but remember, the issue was having to use the mouse in order to switch to related files, and this method allows you to do so by using the keyboard alone (Alt+arrows).

Related

How to disable keyboard in a PyCharm project window?

I want to use search, undo, delete etc. using keyboard in my main editor window and NEVER on my project window.
But once I click file in the project window, I must now do second click into the editor, otherwise my keyboard will start wreaking havoc in the filesystem.
Please tell me there is an intelligent way to disable this!
Could not find it myself, mostly because I don't know how to even name this behaviour.

How to check/uncheck individual change checkbox in IntelliJ commit diff dialog?

I am an aspiring keyboard user, using IntelliJ to do selective commits to my project.
To do this, I open the Commit dialog with Ctrl+K.
I then press Shift+Tab to switch to the file list, Home to select the root-level node, and Space to uncheck/de-select all files.
I then press the down arrow once or more to select a file, press Ctrl+D to display its diff. I press F7 to go to the first change in the file.
At this point, to the left of the right pane (with the new version of the file) is a checkbox. Not the one at the top which selects all the changes in the file, but the one which selects just the change displayed.
My question is: How do I select/un-select this checkbox without using the mouse cursor? I need to use the mouse as little as possible due to RSI.
Note: When asking questions like this, I sometimes get responses with other pointing device suggestions. Unless you're going to recommend a keyboard technique, I am not interested in your suggestion, and will flag/report your response if that's what it is.
By default there is no keyboard keymap for this action. But you can easily choose new keymap for this.
Go to File->Settings and search for "include" in the search box. What you need is to assign a keymap for "Include Lines Into Commit". Double click on this option and assign any keymap that you want. It is hard to find new keymap that didn't assign to any other action, but only for the demo I choosed Ctrl+T.
You can see what I did in the following image:
Click on Apply and then you can use the keymap that you choose to check/uncheck any individual change checkbox in Intellij commit diff dialog.

Navigate (switch) between 'Find' and 'code preview' in IntelliJ IDEA

Hi I have to make a lot of searches in InteliJ and I want navigate between findings of searched text and code preview of specific file.
I tried to search it on web, and also combination of shortcuts like tab, ctrl+tab and many more but nothing work.. Do you know how to switch between those two windows?
right now I have to click it with mouse to focus on one of the windows.
The code preview window is intended to be used as exactly that - a preview, not a UI to be used for complex editing operations. If you need to do anything with the search results, use the "Open in Find Window" button to open the toolwindow with the results. After that, you can use for example Ctrl+Alt+Up/Down to navigate between the occurrences, or other keyboard shortcut to switch between the toolwindow and the editor.

Changing keyboard shortcut of "Available databases" in SQL Management Studio

Please read my question before posting general help links.
I can't change or remove the shortcut CTRL+U from "Available databases" in the SQL Editor toolbar. (I want CTRL+U to unindent the selection in the text editor.)
What I tried:
I assigned CTRL+U to the unindentation command, but still CTRL+U just moves the focus to the "Available databases" combo box. (I checked and I set up my shortcut correctly, actually I set up CTRL+I for indent and it works fine.)
I tried to find CTRL+U in Tools/Options/Environment/Keyboard with all places, only my definition shows up.
I tried to find "Available databases" in Tools/Options/Environment/Keyboard with "...containing" set to "database" (checked all entries) and "available" (again, checked all entries).
I went to tool bar customization, selected the component, but no keyboard shortcut option/menu/button there. The "Keyboard" button only opens Tools/Options/Environment/Keyboard with nothing set.
I actually do use "Available databases" every once in a while, so I rather not delete it from the tool bar.
Anyone have any feasible options apart from the above?
You can "debug" and analyse your shortcut assignments with SSMSBoost add-in for SSMS.
(I am developer of it). It has "Dump Shortcuts" function which will allow you to get quick overview which functions Ctrl-U is assigned to and you can also use it to re-define shortcuts.

Xcode question: Quickly jump to a particular selector/class/symbol?

What is the quickest way to jump to a particular symbol/selector/class in Xcode? (I'm looking for keyboard shortcuts preferably).
Right now, I know two ways of doing this:
“Open Quickly” > Click on the Symbols dropdown menu at the top of the editor > Select the selector to jump to it.
Click on “Project Symbols” in the “Groups and Files” section on the left sidebar, and type in a name in the Search text field in the top right of the XCode window.
Is there a quicker way of doing this? (If I could even assign a shortcut to jump to the “Project Symbols”, that would suffice for me. Alternatively, if I can find a keyboard shortcut to jump to the symbol dropdown above an editor that would do it to).
For experienced Xcode programmers, what do you use to jump to a symbol?
In Xcode 3.2, the "Open Quickly" command (Shift-Control-D) lets you type in selectors and class names as well as file names. This would at least get you close to what you wanted.
Your idea about using the "Symbols" drop-down also works. You can use the keystroke Control-2 to bring up the Symbols drop-down menu, and then use the arrow keys, or start typing the name of the method that you want to reach.
Edit: In Xcode 4, the "Symbols" drop-down appears when pressing Control-6. You can change this in the Xcode settings by changing the key binding for "Standart Editor > Show Document Items".
If you're looking at the symbol in a source file and want to jump to its definition, ⌘-click it.
(command + double click) on your symbol/selector/class in any place of your implementation to jump to them
(option + double click) on framework classes/selectors to jump to their reference in help->documentation
One (arguably crude) way to do it seems to be as follows:
This is based on the fact that the Search field at the top right of the Xcode window seems to change behavior depending on what is selected in the Groups & Files sidebar.
Select “Project Symbols” in the “Groups & Files” sidebar
Press ⌥⌘F (That is Command+Option+F) to jump to the Search field
Enter the symbol to jump to, and an outline will quickly show up
(this will remain in effect until you click on something else in the Groups & Files sidebar)