加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

shell – Emacs相当于VIM的`%`?

发布时间:2020-12-15 21:41:53 所属栏目:安全 来源:网络整理
导读:在VIM中,可以使用%来指示调用 shell命令时的当前文件名.任何人都可以指向我的文档方向,显示emacs中的等价物吗? 解决方法 没有一个.但这是Emacs!所以在这里: (defun my-shell-command-on-current-file (command optional output-buffer error-buffer) "Ru
在VIM中,可以使用%来指示调用 shell命令时的当前文件名.任何人都可以指向我的文档方向,显示emacs中的等价物吗?

解决方法

没有一个.但这是Emacs!所以在这里:

(defun my-shell-command-on-current-file (command &optional output-buffer error-buffer)
  "Run a shell command on the current file (or marked dired files).
In the shell command,the file(s) will be substituted wherever a '%' is."
  (interactive (list (read-from-minibuffer "Shell command: "
                                           nil nil nil 'shell-command-history)
                     current-prefix-arg
                     shell-command-default-error-buffer))
  (cond ((buffer-file-name)
         (setq command (replace-regexp-in-string "%" (buffer-file-name) command nil t)))
        ((and (equal major-mode 'dired-mode) (save-excursion (dired-move-to-filename)))
         (setq command (replace-regexp-in-string "%" (mapconcat 'identity (dired-get-marked-files) " ") command nil t))))
  (shell-command command output-buffer error-buffer))

(global-set-key (kbd "M-!") 'my-shell-command-on-current-file)

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读