,'
on a source block opens that in a separate buffer with the languege relvant modeC-c c
captureC-c C-l
edit link (when it’s not visible org-toggle-link-display)C-c a
agendaC-c a T
show todo list agenda view with specifing todo keywordC-c a t
show todo list agenda view with default todo keyword
FORMATTING:
code
verbose
**bold**
cursive italics
strikethrough
underline
states, multiple: https://orgmode.org/guide/Multi_002dstate-workflows.html#Multi_002dstate-workflows definnig state in variable like
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! PythonGetLabel() | |
if foldlevel('.') != 0 | |
norm! zo | |
endif | |
let originalline = getpos('.') | |
let lnlist = [] | |
let lastlineindent = indent(line('.')) | |
let objregexp = "^\\s*\\(class\\|def\\)\\s\\+[^:]\\+\\s*:" | |
if match(getline('.'),objregexp) != -1 | |
let lastlineindent = indent(line('.')) |