4

I'm looking for a tool which can create, manage and store snippets. Moreover I want this tool can "write" snippets in any text-editor : notepad, SQL Server Management Studio, Visual Studio, Word etc. when typing shortcut.

For example,

  • I create a new snippet in my tool :
    • Shortcut : .fch
    • Snippet : foreach(var i in item) {}

I open Notepad and Word: if I tape ".fch" in one of these editors the .fch sequence is replaced by the snippet.

I don't want a tool which works with drag'n'drop.

Is there a tool like this?

Florian
  • 213

1 Answers1

2

Okay, the one you want is autohotkey, it can create hotstring pretty fast and easy and it works exactly like you want.

Some example:

::.fch::foreach(var i in item) {}
Dzung Nguyen
  • 1,659