,'on a source block opens that in a separate buffer with the languege relvant modeC-c ccaptureC-c C-ledit link (when it’s not visible org-toggle-link-display)C-c aagendaC-c a Tshow todo list agenda view with specifing todo keywordC-c a tshow 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 hidden or 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('.')) |