spacevim/autoload/SpaceVim/layers/lang/ipynb.vim

42 lines
1.4 KiB
VimL
Raw Normal View History

2024-08-21 14:17:26 +08:00
"=============================================================================
" ipynb.vim --- SpaceVim lang#ipynb layer
" Copyright (c) 2016-2023 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg@outlook.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#ipynb#plugins() abort
let plugins = []
" TODO: use remote plugin https://github.com/szymonmaszke/vimpyter
call add(plugins, ['wsdjeg/vimpyter', {'merged' : 0}])
return plugins
endfunction
function! SpaceVim#layers#lang#ipynb#config() abort
call SpaceVim#mapping#space#regesit_lang_mappings('ipynb', function('s:language_specified_mappings'))
endfunction
function! s:language_specified_mappings() abort
call SpaceVim#mapping#space#langSPC('nmap', ['l','p'],
\ 'VimpyterInsertPythonBlock',
\ 'insert python block', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','u'],
\ 'VimpyterUpdate',
\ 'update note book', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','j'],
\ 'VimpyterStartJupyter',
\ 'start jupyter', 1)
call SpaceVim#mapping#space#langSPC('nmap', ['l','n'],
\ 'VimpyterStartNteract',
\ 'start nteract', 1)
endfunction
function! SpaceVim#layers#lang#ipynb#health() abort
call SpaceVim#layers#lang#ipynb#plugins()
call SpaceVim#layers#lang#ipynb#config()
return 1
endfunction