comparison runtime/macros/editexisting.vim @ 8777:a345060d671a v7.4.1677

commit https://github.com/vim/vim/commit/0b9e4d1224522791c0dbbd45742cbd688be823f3 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 28 22:05:47 2016 +0200 patch 7.4.1677 Problem: A reference to the removed file_select plugin remains. Solution: Remove it.
author Christian Brabandt <cb@256bit.org>
date Mon, 28 Mar 2016 22:15:07 +0200
parents 5d89d9b40499
children
comparison
equal deleted inserted replaced
8776:5795cbf14d9c 8777:a345060d671a
1 " Vim Plugin: Edit the file with an existing Vim if possible 1 " Load the editexisting package.
2 " Maintainer: Bram Moolenaar 2 " For those users who were loading the editexisting plugin from here.
3 " Last Change: 2014 Dec 06 3 packadd editexisting
4
5 " This is a plugin, drop it in your (Unix) ~/.vim/plugin or (Win32)
6 " $VIM/vimfiles/plugin directory. Or make a symbolic link, so that you
7 " automatically use the latest version.
8
9 " This plugin serves two purposes:
10 " 1. On startup, if we were invoked with one file name argument and the file
11 " is not modified then try to find another Vim instance that is editing
12 " this file. If there is one then bring it to the foreground and exit.
13 " 2. When a file is edited and a swap file exists for it, try finding that
14 " other Vim and bring it to the foreground. Requires Vim 7, because it
15 " uses the SwapExists autocommand event.
16 if v:version < 700
17 finish
18 endif
19
20 " Function that finds the Vim instance that is editing "filename" and brings
21 " it to the foreground.
22 func s:EditElsewhere(filename)
23 let fname_esc = substitute(a:filename, "'", "''", "g")
24
25 let servers = serverlist()
26 while servers != ''
27 " Get next server name in "servername"; remove it from "servers".
28 let i = match(servers, "\n")
29 if i == -1
30 let servername = servers
31 let servers = ''
32 else
33 let servername = strpart(servers, 0, i)
34 let servers = strpart(servers, i + 1)
35 endif
36
37 " Skip ourselves.
38 if servername ==? v:servername
39 continue
40 endif
41
42 " Check if this server is editing our file.
43 if remote_expr(servername, "bufloaded('" . fname_esc . "')")
44 " Yes, bring it to the foreground.
45 if has("win32")
46 call remote_foreground(servername)
47 endif
48 call remote_expr(servername, "foreground()")
49
50 if remote_expr(servername, "exists('*EditExisting')")
51 " Make sure the file is visible in a window (not hidden).
52 " If v:swapcommand exists and is set, send it to the server.
53 if exists("v:swapcommand")
54 let c = substitute(v:swapcommand, "'", "''", "g")
55 call remote_expr(servername, "EditExisting('" . fname_esc . "', '" . c . "')")
56 else
57 call remote_expr(servername, "EditExisting('" . fname_esc . "', '')")
58 endif
59 endif
60
61 if !(has('vim_starting') && has('gui_running') && has('gui_win32'))
62 " Tell the user what is happening. Not when the GUI is starting
63 " though, it would result in a message box.
64 echomsg "File is being edited by " . servername
65 sleep 2
66 endif
67 return 'q'
68 endif
69 endwhile
70 return ''
71 endfunc
72
73 " When the plugin is loaded and there is one file name argument: Find another
74 " Vim server that is editing this file right now.
75 if argc() == 1 && !&modified
76 if s:EditElsewhere(expand("%:p")) == 'q'
77 quit
78 endif
79 endif
80
81 " Setup for handling the situation that an existing swap file is found.
82 try
83 au! SwapExists * let v:swapchoice = s:EditElsewhere(expand("<afile>:p"))
84 catch
85 " Without SwapExists we don't do anything for ":edit" commands
86 endtry
87
88 " Function used on the server to make the file visible and possibly execute a
89 " command.
90 func! EditExisting(fname, command)
91 " Get the window number of the file in the current tab page.
92 let winnr = bufwinnr(a:fname)
93 if winnr <= 0
94 " Not found, look in other tab pages.
95 let bufnr = bufnr(a:fname)
96 for i in range(tabpagenr('$'))
97 if index(tabpagebuflist(i + 1), bufnr) >= 0
98 " Make this tab page the current one and find the window number.
99 exe 'tabnext ' . (i + 1)
100 let winnr = bufwinnr(a:fname)
101 break
102 endif
103 endfor
104 endif
105
106 if winnr > 0
107 exe winnr . "wincmd w"
108 elseif exists('*fnameescape')
109 exe "split " . fnameescape(a:fname)
110 else
111 exe "split " . escape(a:fname, " \t\n*?[{`$\\%#'\"|!<")
112 endif
113
114 if a:command != ''
115 exe "normal! " . a:command
116 endif
117
118 redraw
119 endfunc