User:Timothee Flutre/Notebook/Postdoc/2012/07/25: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
(→‎About Emacs: add intro to Emacs Lisp)
(→‎About Emacs: add ex see content var)
(4 intermediate revisions by the same user not shown)
Line 12: Line 12:
* '''Documentation''':
* '''Documentation''':
** official [https://www.gnu.org/software/emacs/manual/html_node/emacs/index.html manual] ([https://www.gnu.org/software/emacs/manual/html_node/eintr/index.html intro] to Emacs Lisp)
** official [https://www.gnu.org/software/emacs/manual/html_node/emacs/index.html manual] ([https://www.gnu.org/software/emacs/manual/html_node/eintr/index.html intro] to Emacs Lisp)
** I haven't found yet any good tutorial, outside of the official [https://www.gnu.org/software/emacs/tour/ tour]
** official [https://www.gnu.org/software/emacs/tour/ tour], [http://www.tuteurs.ens.fr/unix/editeurs/emacs.html tutorial] (in French)
** [http://www.emacswiki.org/ wiki] (with many tips)
** [http://www.emacswiki.org/ wiki] (with many tips)
** [https://github.com/vikasrawal/orgpaper/blob/master/orgpapers.org org tutorial]
** [https://github.com/vikasrawal/orgpaper/blob/master/orgpapers.org org tutorial]
** [https://github.com/emacsmirror/p code] (mirrors packages)
** [https://github.com/emacsmirror/p code] (mirrors packages)
** [http://xkcd.com/378/ cartoon]
** [http://xkcd.com/378/ cartoon]
** [https://ebooks-it.org/1565922611-ebook.htm guide] on how to write GNU Emacs extensions


* '''Important packages''':
* '''Important packages''':
Line 27: Line 28:


* '''Tips''':
* '''Tips''':
** from the office computer (desktop), log interactively to a cluster node, launch <code>emacs --daemon</code> and keep the terminal open indefinitely; then access this session from any computer, e.g. a laptop, with <code>emacsclient -t</code>
** from the office computer (desktop), log interactively to a cluster node, launch <code>emacs --daemon</code> and keep the terminal open indefinitely; then access this session from any computer, e.g. a laptop, with <code>emacsclient -t</code>; and close it when needed via <code>emacsclient -e "(kill-emacs)"</code>
** especially useful with [http://en.wikipedia.org/wiki/PuTTY PuTTY] on Windows, launch emacs so that its window is the terminal itself, via <code>emacs -nw</code>
** especially useful with [http://en.wikipedia.org/wiki/PuTTY PuTTY] on Windows, launch emacs so that its window is the terminal itself, via <code>emacs -nw</code>
** when updating org-mode, one may have to first comment all org-related lines in ~/.emacs, remove the dir ~/.emacs.d/elpa/org-*, re-open Emacs with option -Q, install the latest version of org-mode, close Emacs and re-open it without -Q, uncomment all org-related lines in ~/.emacs
** when updating org-mode, one may have to first comment all org-related lines in ~/.emacs, remove the dir ~/.emacs.d/elpa/org-*, re-open Emacs with option -Q, install the latest version of org-mode, close Emacs and re-open it without -Q, uncomment all org-related lines in ~/.emacs
* '''Emacs Lisp''': [http://www.gnu.org/software/emacs/manual/html_node/eintr/ intro]
** see the content of a variable, <code>C-h v</code>, the enter the name of the variable, say <code>load-path</code>
** go to the *scratch* buffer
** write <code>(+ 2 2)</code>
** put the cursor after the last parenthesis, and enter <code>C-x C-e</code>
** one should see <code>4</code> in the mini-buffer
** do the same with <code>(concat "abc" "def")</code>
** here is an example of a [https://www.gnu.org/software/emacs/manual/html_node/eintr/Writing-Defuns.html#Writing-Defuns function] (interactive in this case)
(defun f (x y)
  "add"
  (interactive "nx=\nny=")
  (message "%i" (+ x y))
  )


<!-- ##### DO NOT edit below this line unless you know what you are doing. ##### -->
<!-- ##### DO NOT edit below this line unless you know what you are doing. ##### -->

Revision as of 03:40, 7 December 2016

Project name <html><img src="/images/9/94/Report.png" border="0" /></html> Main project page
<html><img src="/images/c/c3/Resultset_previous.png" border="0" /></html>Previous entry<html>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</html>Next entry<html><img src="/images/5/5c/Resultset_next.png" border="0" /></html>

About Emacs

  • Motivation: when analyzing data for any research project, it's essential to know well a good text editor. Indeed, it's very efficient to be able to program in several languages (eg. Python, C/C++, R), interact with the shell like in a terminal, manipulate data and plot exploratory analyzes in R, all this within the same editor! One such editor is Emacs, and is available on Linux, Mac OS and Windows. For Mac OS X users, I recommend this distribution.
  • Configuration: my own file ~/.emacs (versioned here):
  • Tips:
    • from the office computer (desktop), log interactively to a cluster node, launch emacs --daemon and keep the terminal open indefinitely; then access this session from any computer, e.g. a laptop, with emacsclient -t; and close it when needed via emacsclient -e "(kill-emacs)"
    • especially useful with PuTTY on Windows, launch emacs so that its window is the terminal itself, via emacs -nw
    • when updating org-mode, one may have to first comment all org-related lines in ~/.emacs, remove the dir ~/.emacs.d/elpa/org-*, re-open Emacs with option -Q, install the latest version of org-mode, close Emacs and re-open it without -Q, uncomment all org-related lines in ~/.emacs
  • Emacs Lisp: intro
    • see the content of a variable, C-h v, the enter the name of the variable, say load-path
    • go to the *scratch* buffer
    • write (+ 2 2)
    • put the cursor after the last parenthesis, and enter C-x C-e
    • one should see 4 in the mini-buffer
    • do the same with (concat "abc" "def")
    • here is an example of a function (interactive in this case)
(defun f (x y)
  "add"
  (interactive "nx=\nny=")
  (message "%i" (+ x y))
  )