Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ftplugin/org.vim
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ let s:org_progs = {
\ 'FmtAllTables': '(org-table-map-tables ''org-table-align)',
\ 'UpDblock': '(org-dblock-update)',
\ 'UpAllDblocks': '(org-update-all-dblocks)',
\ 'ExecuteSrcBlock': '(org-babel-execute-maybe)',
\ 'UpTable': '(org-table-iterate)',
\ 'UpAllTables': '(org-table-iterate-buffer-tables)',
\ 'ApplyTableFormula': '(org-table-calc-current-TBLFM)',
Expand Down
21 changes: 21 additions & 0 deletions test/integration.org
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,27 @@ The quick brown fox jumps over the lazy dog

The quick brown fox jumps over the lazy dog

* TODO Src blocks

The quick brown fox jumps over the lazy dog

#+NAME: my-fun
#+BEGIN_SRC python :var x=3 :var y=5
return x * y * 2
#+END_SRC

The quick brown fox jumps over the lazy dog

#+CALL: my-fun(2,3)

The quick brown fox jumps over the lazy dog

The quick brown src_python[:var x=5]{return 3 * 4 + x} fox jumps over the lazy dog

The quick brown call_my-fun(3,4) fox jumps over the lazy dog

The quick brown fox jumps over the lazy dog

* TODO Unaligned table

The quick brown fox jumps over the lazy dog
Expand Down