Skip to content
Snippets Groups Projects
Commit b75d5ebd authored by Michael Hauspie's avatar Michael Hauspie
Browse files

Add snippet for org mode in C

parent 2a872e56
No related branches found
No related tags found
No related merge requests found
......@@ -678,6 +678,13 @@ Some of my configuration entries where borrowed from other people, see
#+end_src
Set line count limit before using =begin_example= blocs in code evaluation results
#+begin_src emacs-lisp
(setq org-babel-min-lines-for-block-output 10)
#+end_src
#+RESULTS:
: 10
* Completion setup
......
# -*- mode: snippet -*-
# name: mainC
# key: mainC
# --
#+begin_src C
#include <stdio.h>
int main(void) {
return 0;
}
#+end_src
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment