Skip to content

Commit 0507e4b

Browse files
author
Chen Bin
committed
minor update of developer guide
1 parent d12630d commit 0507e4b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

developer-guide-en.org

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ Make sure your project is using git.
111111

112112
All developer will encounter the problem to find file with similar file name. C++ developers need find "window.hpp" from "window.cpp". Javascript developers need find "Component.test.js" from "Component.js".
113113

114-
The easiest solution is just sorting the candidates from =counsel-git= by string distance. See [[https://www.emacswiki.org/emacs/LevenshteinDistance][LevenshteinDistance]].
114+
The easiest solution is to sort the candidates from =counsel-git= by [[https://www.emacswiki.org/emacs/LevenshteinDistance][string distance]].
115115

116-
There are tons of handy commands from these counsel/swiper/ivy (=counsel-imenu=, =counsel-recentf=, =counsel-ibuffer=, ...).
116+
There are tons of handy commands from counsel/swiper/ivy (=counsel-imenu=, =counsel-recentf=, =counsel-ibuffer=, ...).
117117

118-
API =ivy-read= from =ivy= is useful. Here is a simple demo on how to use =ivy-read=,
118+
API =ivy-read= from =ivy= is very useful. Here is a simple demo on how to use =ivy-read=,
119119

120120
#+begin_src elisp
121121
(require 'ivy)
@@ -125,7 +125,7 @@ API =ivy-read= from =ivy= is useful. Here is a simple demo on how to use =ivy-re
125125
(message "I chose %s" choice)))
126126
#+end_src
127127
* Sub-windows
128-
I usually open 4~8 sub-windows and use [[https://github.com/deb0ch/emacs-winum][winum]] to move focus between sub-windows.
128+
I usually open 4 sub-windows and use [[https://github.com/deb0ch/emacs-winum][winum]] to move cursor between sub-windows.
129129

130130
You need some package to save and load sub-windows layout. You can start from [[https://github.com/wasamasa/eyebrowse][eyebrowse]].
131131
* Execute command

0 commit comments

Comments
 (0)