-
Notifications
You must be signed in to change notification settings - Fork 0
/
evil-gf.el
45 lines (42 loc) · 1.42 KB
/
evil-gf.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
;;; evil-gf.el
;;;
;;; open-file-under-cursor for evil mode.
;;;
;;
;; Copyright (C) 2023 liuzhishan
;;
;; Author: liuzhishan <[email protected]>
;; Maintainer: liuzhishan <[email protected]>
;; Created: October 16, 2023
;; Modified: October 16, 2023
;; Version: 0.0.1
;; Homepage: https://github.com/lzs/evil-gf
;; Package-Requires: ((emacs "24.4"))
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;;;
;;; I found that `gf` command in evil mode doest work. So I wrote the following function
;;; to do the job. Just copy the following code to config.el and then you can you use `gf`
;;; just like in vim.
;;
;;; Code:
(defun evil-gf-open-file-under-cursor ()
(interactive)
(let* ((file-path (thing-at-point 'filename t)))
(if (file-name-absolute-p file-path)
(find-file file-path)
(let* ((parts (split-string (buffer-file-name) "/"))
(target-filename "")
(target-exists nil))
(dolist (n (number-sequence 1 (length parts)) target-filename)
(let* ((new-filename (string-join (append (-take n parts) (list file-path)) "/")))
(if (file-exists-p new-filename)
(setq target-filename new-filename
target-exists t)
)))
(if target-exists
(find-file target-filename)
(message (format "file not exists: %s" file-path)))))))
(define-key evil-normal-state-map "gf" 'evil-gf-open-file-under-cursor)