Questions tagged [unite.vim]

The unite or unite.vim plug-in can search and display information from arbitrary sources like files, buffers, recently used files or registers. You can run several pre-defined actions on a target displayed in the unite window.

The unite or unite.vim plug-in can search and display information from arbitrary sources like files, buffers, recently used files or registers. You can run several pre-defined actions on a target displayed in the unite window. See more at https://github.com/Shougo/unite.vim

16 questions
6
votes
2 answers

How to navigate results (candidates) in Unite.vim?

After a search in unite.vim, you open a candidate. Is there an easy way to jump to the next one without having to run the search command again? Similar plugins (ack.vim, git-grep) use the quickfix window, so you can type :cn and :cp to jump to…
MetalElf0
  • 1,087
  • 1
  • 8
  • 11
5
votes
1 answer

vim unite plugin recreate

I'm using Vim with the Unite plugin. I have a key mapping in my vimrc file like so, nnoremap t :Unite -start-insert file_rec And it works as expected. Only problem is, when I create a new file in the directory and try to search with t…
Jay
  • 1,083
  • 1
  • 10
  • 19
5
votes
3 answers

Unite.vim file_rec/async

I'm getting started using vim for a week and many things still new to me. During the research, I found Unite.vim is extremely great. However, I cannot manage to get this command works: nnoremap f :Unite -start-insert file_rec/async. I…
babygau
  • 1,551
  • 18
  • 27
4
votes
1 answer

Unite.vim file_rec/async command is not executable

I'm using gVim with Vundle on Windows XP and 7. I have Unite.vim installed and I am trying to use the file_rec/async command to search for files. I've installed Vimproc.vim by executing the following commands: cd .vim\bundle\vimproc.vim make -f…
tp9
  • 341
  • 3
  • 14
3
votes
2 answers

Navigating through a huge project with vim and unite.vim plugin

I've been reading great things about Shougo's "Unite" plugin for Vim for a long time, so I finally decided to give it a try. If you're not already…
Lucky Mike
  • 779
  • 2
  • 6
  • 17
3
votes
1 answer

Autoclose buffer occupying Vim's preview window when new buffer opens in preview window

I use Unite.vim frequently to scroll through lists of files in Vim. Sometimes I use Unite's auto-preview feature to have each file open in the preview window as I scroll over it. If I scroll through a large number of files, this leaves me with a…
Sean Mackesey
  • 10,701
  • 11
  • 40
  • 66
2
votes
2 answers

Unite.vim preview navigation

I'm using Vim with the Unite plugin. How to prevent jump to first line in unite preview, when cursor is in last position and key down J is pressed and otherwise jump from first line to last line, when key up K is pressed?
dkiyatkin
  • 614
  • 7
  • 11
2
votes
0 answers

How can I make unite-vim prioritize folders in a rails app?

When I use Unite to grep through my job's rails app, I usually get results in test/ and db/ before app/. This means a lot of scrolling before I get to anything useful. I see that unite lets you pick a predefined sorter for customizing the order…
valadil
  • 1,648
  • 1
  • 14
  • 30
2
votes
0 answers

How to add directories in unite.vim plugin?

In my .vimrc file I set the following mapping key: nnoremap :Unite -buffer-name=files -start-insert buffer file_mru file_rec:! When I hit C-p, it shows me files in the directory and history. How can I tell vim to show me…
pumper
  • 141
  • 1
  • 10
1
vote
0 answers

Error when opening a file in vim after installing Unite.vim

In the picture below you can see the error I get when trying to open a file in vim after installing unite.vim plugin I installed it by cloning the git repo and then moving the files into the same folders but under my ~/.vim/ directory. Anyone have…
Alistair Hughes
  • 387
  • 2
  • 3
  • 13
0
votes
1 answer

Why does the separate function not create new values that I then can use?

I have used the separate function to split the name column into first_name and last_name, when I run the func: separate(employee, name, into=c('first_name', 'last_name'), sep=' ') and it works when the table is produced. They become two different…
0
votes
1 answer

Vim - Unite file_rec : missing files

I just installed Unite (with vundle), so that my .vimrc has 1 only new line:Plugin 'unite.vim' Then I do this: I open vi from my current dir (which has some nested subdirs & files) I run :Unite file_rec In the results-window I enter i I…
Stiv Stiv
  • 15
  • 4
0
votes
3 answers

Vim Open unite in current folder

I got the following hotkey mapping: nnoremap f Unite file -path=~/Workspace This works great, however, I want to make it so that path equals the current folder I'm in (which will be seperate from working directory). Anyone know how I can…
Robin Heggelund Hansen
  • 4,906
  • 6
  • 37
  • 54
0
votes
1 answer

Unite.vim - how to open files from file browser in tabs

I'm a vim newbie and i hope you can help me: I installed unite.vim and everything works quite fine, but I would like to add a the feature, that opening a file from the file browser (via :Unite file_rec/async) happens in a new tab, and not replacing…
BvuRVKyUVlViVIc7
  • 11,641
  • 9
  • 59
  • 111
-1
votes
1 answer

how to install Unite.vim in Vim?

I want to use Vim to write scientific articles, and was hoping to use Citation.vim for references management along with Zotero. https://github.com/vim-scripts/Citation.vim To install Citation.vim, it is mentioned that Unite.vim has to be installed…
1
2