Keyboard macros: Difference between revisions

→‎Tcl: Added implementation
(→‎Tcl: Added implementation)
Line 29:
</lang>
See [http://www.autohotkey.com/forum/topic44290.html&highlight=vim ahk-viper-mode] for a context sensitive vi key bindings example.
 
=={{header|Tcl}}==
{{libheader|Tk}}
<lang tcl>package require Tk
pack [label .l -text "C-x C-s to save, C-x C-c to quit"]
focus .
bind . <Control-x><Control-s> {tk_messageBox -message "would save here"}
bind . <Control-x><Control-c> {exit}</lang>
Anonymous user