Chinaunix首页 | 论坛 | 博客
  • 博客访问: 120727
  • 博文数量: 24
  • 博客积分: 3030
  • 博客等级: 中校
  • 技术积分: 580
  • 用 户 组: 普通用户
  • 注册时间: 2007-01-11 10:58
文章分类

全部博文(24)

文章存档

2011年(2)

2010年(4)

2009年(10)

2008年(8)

我的朋友

分类: LINUX

2009-07-30 15:43:04

Open file or direcotry using marked text file/directory path.
(defun open-mark-file-path ()
"open file or directory by marking text file path"
(interactive)
      (let ((fpath (buffer-substring-no-properties (region-beginning) (region-end))))
        (progn
          (find-file fpath)
          )
        )
)
(global-set-key [f5] 'open-mark-file-path)

todo: If nothing is marked, it will auto-use the string at current cursor point as path.

阅读(432) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~