Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

93
votes
36answers
5k views

What Linux/Unix commands are outdated and have powerful alternatives? [closed]

Today I discovered you can make less act like tail -f. less filename, then press Shift-F to start follow mode. Just like tail, but you have all the added features of less - like scrolling, ...
30
votes
5answers
5k views

How do I close all open tabs in VIM at once?

If I have 10 tabs opened, I have to close each one using ":q" separately. How can I close them all at once?
19
votes
3answers
4k views

How do I disable zoom on control-scroll in Visual Studio 2010?

Visual Studio 2010 adds a zoom setting on the bottom left of the text editor (to the left of the horizontal scroll bar) and also adopts the control + mouse scroll idiom for zooming in and out. The ...
16
votes
4answers
5k views

Wix create non advertised shortcut for all users / per machine

In WIX, how do you create a non advertised shortcut in the allusers profile? So far I've only been able to accomplish this with advertised shortcuts. I prefer non-advertised shortcuts because you ...
16
votes
2answers
4k views

What is the shortcut key for Run to cursor

What is the shortcut key for Run to cursor in visual studio 2008?
15
votes
5answers
2k views

TextMate tips for Rails Development

Working on Rails code for a bit has started me on the spiral into obsessively customising my dev environment (I say obsessive as at the last Rails meetup I went to there was some guy who was raving ...
7
votes
3answers
4k views

Binding a WPF ShortCut Key to a Command in the ViewModel

I have a WPF app that is using the MVVM pattern. Hooking up buttons to the VM is pretty straight forward since they implement the ICommand. I have a context menu that works similar. The next step is ...
7
votes
4answers
149 views

How to open the red-button menu on Visual Studio (2008) with the keyboard?

When you type something and there's some problem you get a tiny red rectangle at the end of the symbol/word that has the problem and when you hover the mouse over it, you get a button and when you ...
7
votes
3answers
2k views

Visual Studio 2008 macro to switch between header and source files?

Does anyone know how to make a macro or something to switch between foo.hpp and foo.cpp? I would really appreciate having a macro like this. I guess it would help if it actually opened the ...
6
votes
5answers
1k views

VIM: Mappable (unused) shortcut letters?

I'm trying to create two mappings which are efficient for myself: map X ddp Which I'd use to delete and paste in one go. map X "_dw Which would delete a word without yanking into a register. ...
6
votes
10answers
2k views

Emacs equivalent of Vim's yy10p?

How can I copy a line 10 times easily in Emacs? I can't find a copy-line shortcut or function. I can use C-aC-spcC-eM-w to laboriously copy the line but how can I then paste it more than once? Any ...
5
votes
3answers
394 views

VIM: available shortcuts?

I use many shortcuts for my work in vim. Other shortcuts are taken by plugins. Sometimes I would like to add a shortcut for a new command but note afterwards that the shortcut was already taken. Is ...
5
votes
2answers
1k views

“The parameter is incorrect” when clicking pinned item on Windows 7 after updating the application

I have the following situation: Installed my application using ordinary .msi Run the application from the start menu Right click on the icon in the task bar and pin it. Now, I can use the pinned ...
5
votes
2answers
168 views

Is there a Visual Studio shortcut for replacing the beginning and ending tag name in XAML/XML/HTML at once?

I want something similar to this post but with Visual Studio. This would be very helpful when editing XAML, XML, or HTML. For instance: <StackPanel> <Button>I'm A ...
4
votes
7answers
231 views

How can I easily exclude certain lines of code from a compile?

Scattered throughout a software project I am working on are many lines of code that were written for debugging and utility purposes. Before I compile my code, I want a way to select whether or not ...
4
votes
4answers
482 views

Search and replace: What's the proper shortcut?

Very simple dilemma. A user needs to be able to do a search-and-replace in a large piece of text. Code to do this is a piece of cake. No problems there. Works like a charm! Don't break your head over ...
4
votes
3answers
718 views

Is there a way to follow a windows fileystem shortcuts programatically in C# without using COM?

Back in .NET 1.0 days I wrote a method to return the target of a shortcut on MS Windows. It did this through using an interop to the Windows Script Hosting Object Model and brute forced through the ...
4
votes
13answers
933 views

What do you do to learn shortcuts?

Keyboard shortcuts can definitely improve your productivity. But first you have to learn them... What do you do to become shortcut-master? Do you just try to remember? Use a tool similar to KeyTraino? ...
4
votes
7answers
6k views

Windows shortcut (.lnk) parser in Java?

I'm currently using Win32ShellFolderManager2 and ShellFolder.getLinkLocation to resolve windows shortcuts in Java. Unfortunately, if the Java program is running as a service under Vista, ...
4
votes
5answers
899 views

Visual Studio 2005 Shortcuts

I'm trying to bind the following shortcut: Ctrl + W to close tabs How can you customize VS to add/change shortcuts? Also, what are the most useful shortcuts you guys have found?
3
votes
1answer
29 views

Java Eclipse debugging shortcuts in “Editing Java Source”

I like to use shortcuts while debugging my java applications in eclipse. The keys F5,F6,F7 and F8 only work in debugging perspective. So I tried to copy all keys (Preference -> General -> Keys) with ...
3
votes
1answer
58 views

How do I read the contents of the network shortcuts folder in C#?

My network shortcuts folder is located here: C:\Users\elan\AppData\Roaming\Microsoft\Windows\Network Shortcuts This folder contains a number of shortcuts to web folders that I defined/configured. ...
3
votes
2answers
67 views

Get desktop path for all administrators in C#

I need to create desktop shortcuts to my app for all administratos in the system. I'm using the following code to get user list. var identifier = new ...
3
votes
5answers
56 views

Is there a shortcut to writing multiple conditions in php?

Is there a shorter way of writing this (without using regex or string-matching functions)? if($page=='page1.php' || $page=='page2.php' || $page=='page3.php' || $page=='page4.php'){ do something...} ...
3
votes
3answers
144 views

Is there a shortcut for switching between panels in eclipse?

Eclipse has an MDI structure (Multi Document Interface), so the search panel, the package explorer and the code editor can all be open in one window, but I haven't found a keyboard shortcut for ...
3
votes
2answers
260 views

shortcut to run concrete test

I can run the whole Junit test using: Shift + Alt + X, T But how I can run a single test? Using the mouse I click on concrete method and Run As -> Junit test anyone know shortcut for this case ...
3
votes
2answers
652 views

NSIS CreateShortCut: Shortcuts order on Start menu

I am using NSIS to create an installer for one of my apps, and I am using this code to create shortcuts on the start menu: ;create start-menu items CreateDirectory "$SMPROGRAMS\myFolder" ...
3
votes
3answers
387 views

Intellij 'Go to symbol' shortcut in eclipse?

There is a shortcut in IntelliJ I'm looking equivalent in Eclipse, it is called 'Go to symbol'. CTRL-ALT-SHIFT-N lets you start typing and glob up classes, method names, variable names, etc, from the ...
3
votes
1answer
213 views

Is it possible for a Perl script running on a Unix/Linux platform to create Windows Shortcuts?

If I want to create a *nix symlink, I'll call symlink();, if i'm running a script on windows and I want to create a shortcut, I'd use Win32::Shortcut. But what if I want to create a Windows shortcut ...
3
votes
2answers
345 views

Create keyboard short-cuts for Toolbar Control in VB6

In my VB6 project, I'm using only Toolbar Control in main MDI From (Not menubar), The Toolbar has big pictures denoting actions like New, Save, View, Help etc. I wanted to know if there is any way to ...
3
votes
2answers
458 views

What is the best way to write faster on Vim using a non-english keyboard?

I usually use Vim, and its great for the ability to do faster some actions than other editors. However, since I live in Argentina I have a Latin American keyboard, that makes everything in Vim pretty ...
3
votes
2answers
725 views

Can I set an environment variable for an application using a shortcut in Windows?

I have a feeling I should be able add a directory to the PATH environment variable on an application-lifetime basis, but I can't find out how to do this. Is it possible to add a parameter to a Windows ...
3
votes
2answers
420 views

Getting the starting shortcut in c#

Lets say that I have an executable and when it is started I want to know how it's started. I.e. I would like to know if it is started with a shortcut or directly. With this: string test = ...
3
votes
3answers
640 views

Resharper 5 Beta - Goto Declaration (CTRL + Click) is not working

In Visual Studio 2010 Beta 2 with Resharper 5 Beta, Goto Declaration (CTRL + Click) is not working. Anybody has solution for that? I tried in google but couldn't find any solution yet.
3
votes
4answers
2k views

Making a windows shortcut start relative to where the folder is?

I have a game that uses this file structure: GAME FOLDER ->data ->data->run.bat I want to put a shortcut to run.bat in GAME FOLDER, but if I move it, or someone else installs it it won't work ...
3
votes
2answers
1k views

How to load static data in Mirth, avoid many roundtrips to a database

Mirth is a broker to help with healthcare application HL7 message integration. My question is about saving yourself the trouble of hitting your own datastore everytime you want to do a lookup on some ...
3
votes
5answers
3k views

How to install program shortcuts for all users?

I'm creating an installer msi file using the Windows Installer XML toolkit. When installing the created msi file, a shortcut placed under the ProgramMenuFolder folder results in a shortcut for the ...
3
votes
1answer
1k views

Wix Local Settings\App Data Shortcut

How can I create a shortcut using Wix with a target of "%UserProfile%\Local Settings\Application Data\Foo\Logs"? <Shortcut Id="LogsStartMenuShortcut" Name="Logs" Target="%UserProfile%\Local ...
3
votes
2answers
169 views

GIve me short cut for visual studio 2008 IDE

In eclipse, F3 or Ctrl+mouseClick in particular on a (function, class, interface, variable) name opens the corresponding (function, class, interface, variable). but in visual studio only a same class ...
3
votes
2answers
6k views

Editing shortcut (.lnk) properties with Powershell

I've found a nasty VBS way to do this, but I'm looking for a native PoSh procedure to edit the properties of a .LNK file. The goal is to reach out to remote machines, duplicate an existing shortcut ...
3
votes
1answer
496 views

Fake Shortcuts in Windows - Is there an API? One for C#?

I'm not sure what they call the fake shortcuts you often see in Windows now. A good example would be the link to any of the Office 2007 programs. You can tell one of these from a regular shortcut ...
3
votes
3answers
1k views

How can I test programmatically if a path/file is a shortcut?

I need to test if a file is a shortcut. I'm still trying to figure out how stuff will be set up, but I might only have it's path, I might only have the actual contents of the file (as a byte[]) or I ...
3
votes
4answers
1k views

How do you start a program stored on a UNC share from the command line with parameters?

There's an in-house program we use and it's stored on a UNC share so that updates are transparent. I'd like to supply it some command line parameters like so: \\server\share\in_house_thingy.exe ...
3
votes
1answer
3k views

How can I make a shortcut start in a different directory when running it as an administrator on Windows Vista?

I have a shortcut on my desktop which opens a command prompt with many arguments that I need. I set the 'start in' field to d:\ and it works as expected (the prompt starts in d:). When I choose ...
3
votes
1answer
410 views

What is keyboard shortcut to view all open documents in Visual Studio 2008

I am trying to learn the keyboard shortcuts in Visual Studio in order to be more productive. So I downloaded a document showing many of the default keybindings in Visual Basic when using the VS 2008 ...
2
votes
1answer
90 views

Assigning a custom icon to a Mac desktop element

I am writing an application in Swing that involves creating an Internet shortcut on the desktop for a particular site. It works fine in Windows. Mac allows me to create the shortcut, but does not ...
2
votes
2answers
48 views

Is there another keyboard shortcut for cycling command history in bash?

I know you can use the arrow keys to go up and down the command history in bash but I want to know if there is equivalent letter-based shortcut so my hands don't have to travel as far. Any ideas? ...
2
votes
2answers
123 views

Visual Studio Installer how to prompt for install of shortcuts

I am using the basic VS project of Other Project Types\Setup and Deployment\Visual Studio Installer\ Setup Project. I want to give the user the option of whether or not to create a desktop shortcut ...
2
votes
2answers
111 views

Python locate “all programs” folder in the start menu

I'm trying to create a folder with shortcuts in it inside the windows folder "Programs" in the start menu. I've already found a way of creating shorkuts but I can't find a way to locate the "programs" ...
2
votes
0answers
116 views

Mathematica Notebook Navigation Shortcuts [closed]

I really enjoy structuring my Notebook with different part & sub-parts, however, I have not yet found the shortcuts to navigate it efficiently. For example : -How to go from one paragraph to ...

1 2 3 4