Giter Club home page Giter Club logo

Comments (4)

powerman avatar powerman commented on August 15, 2024

Well, I didn't know :help does survive session save/load. Not sure how I missed this, maybe it was implemented in vim after viewdoc release date (i.e. in last 9 years or so 😄). This is a cool feature and I'd like to have it in viewdoc. But, to be honest, unlikely I'll have enough spare time to implement it anytime soon. So, PR is welcome.

from vim-plugin-viewdoc.

poetaman avatar poetaman commented on August 15, 2024

@powerman Ok, same here, times are a bit busy to read through your code and send a PR in coming weeks. What about the minimal information that I ask? 1) full filename+path of current file, 2) way of knowing that current buffer is a vim-plugin-viewdoc's buffer? Don't you already have that information available at your disposal in the plugin somewhere?

If you could provide that, then at least I will be able to make it going in my vimrc. Then maybe at a later point a clean PR could be sent.

from vim-plugin-viewdoc.

powerman avatar powerman commented on August 15, 2024

In last years there was about 1 commit/year with minor updates, so I don't have viewdoc code base at the top of my head now.

AFAIR in most cases (doc sources) we don't have any source file, viewdoc run external tools and gather it output into vim buffer.

As for detecting viewdoc buffers - there was some way. One probably depends on concrete viewdoc plugin: usually they define a custom &ft value, like when you open documentation for Go you'll see ft=godoc, when you open documentation for shell script you'll see ft=man, etc. This was supposed to be used for doc-specific syntax highlight, but may be useful for you too. Or you may try to add some fixed marker into

" call s:OpenBuf('doc') open existing '[Doc]' buffer (create if not exists)
" call s:OpenBuf('new') create and open new '[DocN]' buffer
function s:OpenBuf(target)
let bufname = escape(s:bufname, '[]\')
let [tabnr, winnr, bufnr] = s:FindBuf(bufname)
if a:target ==# 'new'
let s:bufid = s:bufid + 1
let bufname = substitute(bufname, '\(\]\?\)$', s:bufid . '\1', '')
execute g:viewdoc_open . ' ' . bufname
elseif tabnr == -1
execute g:viewdoc_open . ' ' . bufname
else
execute 'tabnext ' . tabnr
execute winnr . 'wincmd w'
endif
if g:viewdoc_only
only!
endif
setlocal noswapfile buflisted buftype=nofile bufhidden=hide
endfunction

from vim-plugin-viewdoc.

poetaman avatar poetaman commented on August 15, 2024

@powerman The way :help partially survives session save and restore is that it does not change the buffer's filename like vim-plugin-viewdoc does. If you try doing :echo expand('%:p') from a help buffer opened by :help, it will show the full path of file. While restoring the session, vim would open this file using usual :edit command, then a user can fully restore :help functionality in that buffer by processing it.

I see... if there is no source file, then it would be hard to save state and restore it. At least for the sources like vim help, man pages, etc that do have a file, a function that returns file name would be ideal.

A hacky way of checking if its a viewdoc buffer would be to look if a buffer local variable b: unique to viewdoc exists...

from vim-plugin-viewdoc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.