Code Monkey home page Code Monkey logo

nuake's People

Contributors

bag-man avatar lenovsky avatar mathieupost avatar rgreenblatt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

nuake's Issues

:Nuake focus window if already open but not in it

I do :Nuake and I'm not in the buffer, I don't want to toggle it off, but I want to switch down to it. I tried to look into if I could make a command like this on top of Nuake myself, but I don't understand enough about how vim works. :(

[Feature request] Vim-test

Hi, I just saw your plugin and I feel is pretty nice.
I was wondering if there is a way or plan to use nuake with vim-test

E947 error when quit vim

When I quit vim after nuake was once toggled, there was always an error "E947: Job still running in buffer !/bin/zsh". I usually run vim inside tmux and iterm2. The prompt is really annoying, any suggestions?

New terminal per tab.

It'd be nice to have a new terminal per tab. This is what I do to toggle a panel-like terminal like Nuake:

        " Toggleable terminal

            augroup TerminalToggle
                autocmd!
                " the very first tab is handled by VimEnter not TabEnter
                autocmd TabNew,VimEnter * let t:terminalToggled = get(t:, 'terminalToggled', 'off')
            augroup end

            nnoremap <leader>t :call ToggleTerminal()<CR>
            nnoremap <c-\><c-t> :call ToggleTerminal()<CR>
            tnoremap <c-\><c-t> <c-\><c-n>:call ToggleTerminal()<CR>

            function! ToggleTerminal()
                if t:terminalToggled == "on"
                    let t:terminalToggled="off"
                    pclose
                else
                    let t:terminalToggled="on"
                    pedit | wincmd j | wincmd J | resize 20 | terminal
                endif
            endfunction

It's essentially like Nuake, but it doesn't keep the terminal alive when closing the window. (I gotta learn how to do that). The nice thing about it though is that it's on a per-tab basis, so it can be a different terminal instance per tab, which I really like.

If you could make Nuake have a setting for per-tab terminal instance, that'd be awesome!

Nuake is not persistent during buffer switch

Steps to reproduce:

  • Open buffer
  • Open Nuake and do operations
  • Close Nuake and switch buffer
  • Open Nuake and see a new instance instead of the old one

Nuake is persistent between tabs.

Installed on Neovim

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.