Skip to content

Commit a0bbfa8

Browse files
author
Chen Bin
committed
fixed blog link
1 parent 06325f7 commit a0bbfa8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.org

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ But there is a simple workaround:
176176
**** [[https://ctags.io/][Universal Ctags (recommended)]] or [[http://ctags.sourceforge.net][Exuberant CTags]]
177177
- It creates tags file for code navigation and code completion
178178
- Required by many tags related packages (=xref=, =counsel-etags=, =company-ctags= from =company-mode=, etc)
179-
- See [[http://blog.binchen.org/?p=1057][How to use ctags in Emacs effectively]]
179+
- See [[http://redguardtoo.github.io/?p=1057][How to use ctags in Emacs effectively]]
180180
**** [[http://www.gnu.org/software/global][GNU Global]]
181181
- Required by [[https://github.com/syohex/emacs-counsel-gtags][counsel-gtags]] and =company-gtags= from =company-mode=
182182
- It creates index files for code navigation and auto-completion
@@ -281,7 +281,7 @@ Press =C-c C-y= anywhere to bring up default hydra menu.
281281

282282
The tutorials I recommended have enough information about commands.
283283

284-
Besides, "[[http://blog.binchen.org/posts/how-to-be-extremely-efficient-in-emacs.html][How to be extremely efficient in Emacs]]" lists my frequently used commands.
284+
Besides, "[[http://redguardtoo.github.io/posts/how-to-be-extremely-efficient-in-emacs.html][How to be extremely efficient in Emacs]]" lists my frequently used commands.
285285

286286
Press =kj= to escape from =evil-insert-state= and everything else in Emacs. It's much more efficient than =ESC= in Vim or =C-g= in Emacs. Search =evil-escape= in =init-evil.el= for details.
287287
* FAQ
@@ -324,7 +324,7 @@ If you prefer your own spell check solution, insert below code to disable wucuo
324324
(setq my-disable-wucuo t)
325325
#+end_src
326326

327-
For further knowledge on spell checking, you could read [[http://blog.binchen.org/posts/what-s-the-best-spell-check-set-up-in-emacs.html][my article]] and code in =init-spelling.el=.
327+
For further knowledge on spell checking, you could read [[http://redguardtoo.github.io/posts/what-s-the-best-spell-check-set-up-in-emacs.html][my article]] and code in =init-spelling.el=.
328328
** Lock packages
329329
Some packages are so important to my workflow that they are locked.
330330

@@ -414,7 +414,7 @@ Here is sample setup:
414414

415415
In "friendly" Visual C++, [[http://www.codeproject.com/Tips/588022/Using-Additional-Include-Directories][similar setup]] is required.
416416

417-
You can use other backends instead of =clang=. For example, you can use =company-gtags= and [[https://www.gnu.org/software/global/][GNU Global]] instead. See [[http://blog.binchen.org/posts/emacs-as-c-ide-easy-way.html][Emacs as C++ IDE, easy way]] for details.
417+
You can use other backends instead of =clang=. For example, you can use =company-gtags= and [[https://www.gnu.org/software/global/][GNU Global]] instead. See [[http://redguardtoo.github.io/posts/emacs-as-c-ide-easy-way.html][Emacs as C++ IDE, easy way]] for details.
418418

419419
*** Auto-completion for other languages
420420
It's similar to C++ setup. Since GNU Global supports many popular languages, you can use =company-gtags=.
@@ -514,7 +514,7 @@ git revert commit-2014-12-01
514514
git revert commit-2014-11-01
515515
#+end_src
516516
** Indentation
517-
Learn [[http://www.emacswiki.org/emacs/IndentationBasics][basics]]. Then use [[http://blog.binchen.org/posts/easy-indentation-setup-in-emacs-for-web-development.html][my solution]].
517+
Learn [[http://www.emacswiki.org/emacs/IndentationBasics][basics]]. Then use [[http://redguardtoo.github.io/posts/easy-indentation-setup-in-emacs-for-web-development.html][my solution]].
518518
** Editing Lisp
519519
Please note [[http://emacswiki.org/emacs/ParEdit][paredit-mode]] is enabled when editing Lisp. Search "paredit cheat sheet" to learn its key bindings.
520520
** Use [[https://github.com/Malabarba/smart-mode-line][smart-mode-line]] or [[https://github.com/milkypostman/powerline][powerline]]?

lisp/init-misc.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
(interactive)
122122
(man (concat "-k " (my-use-selected-string-or-ask))))
123123

124-
;; @see http://blog.binchen.org/posts/effective-code-navigation-for-web-development.html
124+
;; @see http://redguardtoo.github.io/posts/effective-code-navigation-for-web-development.html
125125
;; don't let the cursor go into minibuffer prompt
126126
(setq minibuffer-prompt-properties
127127
(quote (read-only t point-entered minibuffer-avoid-prompt face minibuffer-prompt)))

0 commit comments

Comments
 (0)