Dobrando seções específicas de código no vim

2

Eu estou querendo saber se é possível dobrar automaticamente apenas seções específicas do código no vim (especificamente para arquivos python).

Atualmente estou usando o método de dobra de recuo. E eu gostaria de apenas dobrar um bloco recuado se o cabeçalho corresponder a um padrão.

Por exemplo, se eu estiver em um arquivo com essa função, gostaria que todos os blocos iniciados com Exemplo: ou Referências: fossem automaticamente dobrados, mas não quero que mais nada seja dobrado.

Existe uma maneira simples de fazer isso?

def spawn_background_process(func, *args, **kwargs):
    """
    Run a function in the background
    (like rebuilding some costly data structure)

    References:
        http://stackoverflow.com/questions/2046603/is-it-possible-to-run-function-in-a-subprocess-without-threading-or-writing-a-se
        http://stackoverflow.com/questions/1196074/starting-a-background-process-in-python
        http://stackoverflow.com/questions/15063963/python-is-thread-still-running

    Args:
        func (function):

    CommandLine:
        python -m utool.util_parallel --test-spawn_background_process

    Example:
        >>> # DISABLE_DOCTEST
        >>> from utool.util_parallel import *  # NOQA
        >>> import utool as ut
        >>> import time
        >>> from os.path import join
        >>> # build test data
        >>> fname = 'test_bgfunc_output.txt'
        >>> dpath = ut.get_app_resource_dir('utool')
        >>> ut.ensuredir(dpath)
        >>> fpath = join(dpath, fname)
        >>> # ensure file is not around
        >>> sleep_time = 1
        >>> ut.delete(fpath)
        >>> assert not ut.checkpath(fpath, verbose=True)
        >>> def backgrond_func(fpath, sleep_time):
        ...     import utool as ut
        ...     import time
        ...     print('[BG] Background Process has started')
        ...     time.sleep(sleep_time)
        ...     print('[BG] Background Process is writing')
        ...     ut.write_to(fpath, 'background process')
        ...     print('[BG] Background Process has finished')
        ...     #raise AssertionError('test exception')
        >>> # execute function
        >>> func = backgrond_func
        >>> args = (fpath, sleep_time)
        >>> kwargs = {}
        >>> print('[FG] Spawning process')
        >>> threadid = ut.spawn_background_process(func, *args, **kwargs)
        >>> assert threadid.is_alive() is True, 'thread should be active'
        >>> print('[FG] Spawned process. threadid=%r' % (threadid,))
        >>> # background process should not have finished yet
        >>> assert not ut.checkpath(fpath, verbose=True)
        >>> print('[FG] Waiting to check')
        >>> time.sleep(sleep_time + .1)
        >>> print('[FG] Finished waiting')
        >>> # Now the file should be there
        >>> assert ut.checkpath(fpath, verbose=True)
        >>> assert threadid.is_alive() is False, 'process should have died'
    """
    import utool as ut
    func_name = ut.get_funcname(func)
    name = 'mp.Progress-' + func_name
    proc_obj = multiprocessing.Process(target=func, name=name, args=args, kwargs=kwargs)
    #proc_obj.isAlive = proc_obj.is_alive
    proc_obj.start()
    return proc_obj
    
por Erotemic 20.11.2015 / 16:00

1 resposta

4

Existe uma maneira de fazer isso, você só precisa escrever uma função de dobra personalizada .

Coloque o seguinte código em .vim/after/ftplugin/python/folding.vim (criando diretórios e arquivos, se não presentes):

function! ExampleFolds(lnum)
  let s:thisline = getline(a:lnum)
  if match(s:thisline, '^\s*Example:$') >= 0
    return '>1'
  elseif match(s:thisline, '^\s*$') >= 0
    return '0'
  else
    return '='
endfunction

setlocal foldmethod=expr
setlocal foldexpr=ExampleFolds(v:lnum)

Você ainda precisará adaptar essa função um pouco para atender às suas necessidades. O que acontece agora é iniciar uma dobra com o nível de dobra 1 sempre que ele encontrar um bloco Example: . A dobra inclui todas as linhas seguintes até que um novo bloco de exemplo esteja lá (iniciando uma nova dobra) ou uma linha vazia a feche.

Além do link, verifique :h foldexpr e :h foldlevel .

    
por 29.11.2015 / 12:16

Tags