我想为emacs创建一个快捷键来执行此命令:
cscript example //C:Perlscript
example.pl是我想要执行的perl脚本
我已经有了一个执行perl的快捷键:(global-set-key(kbd“”)'perl-eval) 我怎么做到这个?
答案 0 :(得分:2)
试试这个
(defun run-command () "Run hard coded shell command" (interactive) (shell-command (concat "cscript " buffer-file-name " //C:Perlscript"))) (global-set-key (kbd "<f2>") 'run-command)