* Re: vim reports file having changed
[not found] ` <CADT32eJT=J+Jip_LFTX8SKZcEYUgdP7k=3PkE=q5UeH1rL2Ehg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2011-12-01 18:22 ` Johannes Thrän
[not found] ` <CAFbNW2EQC5d506pXTzJUMtHGUL-76Wz9CoVTJkf0WAdb5VQX1w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Johannes Thrän @ 2011-12-01 18:22 UTC (permalink / raw)
To: linux-cifs-u79uwXL29TY76Z2rM5mHXA
[-- Attachment #1: Type: text/plain, Size: 3014 bytes --]
sorry for having been unspecific:
with sometime i mean: some seconds after first saving the file.
sometimes 2 sometimes 20 not more. as I recreated the error, I found
out, it only occurs after saving the file once.
the exact error message vim confronts me with is:
WARNING: The file has been changed since reading it!!!
Do you really want to write to it (y/n)?
I have no idea how vim determines file changes in terms of system
calls. the vim maintainer was neither polite nor helpful, he just sent
me here. I asked him again, perhaps he'll answer. Until then I straced
-t the thing and prefiltered the output. the test file's name is
"test" and it contains the text "this is a test". I saved the file
twice, the first save went well, the second save (few seconds later)
didn't. see attachment.
thanks!
On Thu, Dec 1, 2011 at 4:56 PM, Shirish Pargaonkar
<shirishpargaonkar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> On Thu, Dec 1, 2011 at 9:44 AM, Jeff Layton <jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org> wrote:
>> On Wed, 30 Nov 2011 15:25:01 +0100
>> Johannes Thrän <johannes.thraen-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:
>>
>>> Hi all,
>>>
>>> I reported this before here, it somehow went under. So I'll try again:
>>>
>>> When I open a file which is located on a cifs-mounted windows share
>>> with vim, vim will after some time always report the file as having
>>> changed upon saving, regardless whether it has actually changed or
>>> not.
>>>
>>> I reported this also to the vim maintainer who told me, there he
>>> doesn't know of a similar problem with samba. Ergo it's probably a
>>> problem with cifs.
>>> I work on a daily basis with mentioned setup, so I would be vary glad
>>> to help resolve it.
>>>
>>> mount.cifs -v gives 4.5, I use kubuntu 11.04 and vim 7.2
>>>
>>
>> Unfortunately, this sort of report doesn't help us to help you very
>> much. I have no idea what vim is actually complaining about when it
>> says that the file has changed.
>>
>> As it's a kernel filesystem, it primarily deals with userspace code via
>> system calls. If you can phrase your problem in that context then
>> that would help. We'd need to know what vim is actually looking at to
>> detect that the file has changed. Is it the mtime?
>>
>> --
>> Jeff Layton <jlayton-eUNUBHrolfbYtjvyW6yDsg@public.gmane.org>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>>
>
> yes, that would be useful. I just tried with vim 7.2.22, cifs version 1.76
> against a Windows 2003 server and after two minutes of opening a file
> and while closing, no errors or messages.
>
> What is the exact error message by vim? And how long is "sometime"?
> A trace data (strace, wireshark, tcpdump) obtained while
> encountering/recreating the problem would help.
[-- Attachment #2: vim_strace --]
[-- Type: application/octet-stream, Size: 46453 bytes --]
.... above is vim initialization, reading the test file, etc.
next line is my first save, which worked fine.
the next save attempt (search for .*open.*test.*) confronted me with the error message
18:26:54 open("test", O_WRONLY|O_CREAT|O_TRUNC, 0777) = 3
18:26:54 write(3, "this is a test\n", 15) = 15
18:26:54 fsync(3) = 0
18:26:54 stat("test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:26:54 stat("test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:26:54 close(3) = 0
18:26:54 chmod("test", 0100777) = -1 EPERM (Operation not permitted)
18:26:54 write(1, " 1L, 15C written", 16) = 16
18:26:54 stat("/mnt/w/999_tmp/test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:26:54 unlink("test~") = 0
18:26:54 getcwd("/mnt/w/999_tmp", 4096) = 15
18:26:54 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:26:54 write(1, "\33[57;1H\33[38;5;12m~ "..., 1087) = 1087
18:26:54 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:26:54 write(1, "\33[1;1H\33[?25h", 12) = 12
18:26:54 select(1, [0], NULL, [0], {4, 0}) = 0 (Timeout)
18:26:58 lseek(4, 0, SEEK_SET) = 0
18:26:58 write(4, "b0VIM 7.3\0\0\0\0\20\0\0\336\270\327Nt9\1\0E3\0\0thra"..., 4096) = 4096
18:26:58 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:26:58 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:26:58 select(1, [0], NULL, [0], NULL) = 1 (in [0])
18:27:02 read(0, ":", 4096) = 1
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 write(1, "\33[?25l\33[m\33[66;1H\33[K\33[66;1H:", 27) = 27
18:27:02 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B4000000 opost -isig -icanon -echo ...}) = 0
18:27:02 ioctl(0, SNDCTL_TMR_START or TCSETS, {B4000000 opost -isig -icanon -echo ...}) = 0
18:27:02 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B4000000 opost -isig -icanon -echo ...}) = 0
18:27:02 uname({sys="Linux", node="zipfl", ...}) = 0
18:27:02 getcwd("/mnt/w/999_tmp", 4096) = 15
18:27:02 stat("/mnt/w/999_tmp/[Command Line]", 0x7fff7ecf1fd0) = -1 ENOENT (No such file or directory)
18:27:02 readlink("[Command Line]", 0x7fff7ecf0950, 4095) = -1 ENOENT (No such file or directory)
18:27:02 open(".[Command Line].swp", O_RDONLY) = -1 ENOENT (No such file or directory)
18:27:02 open(".[Command Line].swp", O_RDWR|O_CREAT|O_EXCL, 0600) = 3
18:27:02 open(".[Command Line].swpx", O_RDONLY) = -1 ENOENT (No such file or directory)
18:27:02 open(".[Command Line].swpx", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
18:27:02 fstat(3, {st_mode=S_IFREG|0777, st_size=0, ...}) = 0
18:27:02 fstat(5, {st_mode=S_IFREG|0777, st_size=0, ...}) = 0
18:27:02 close(5) = 0
18:27:02 unlink(".[Command Line].swpx") = 0
18:27:02 close(3) = 0
18:27:02 unlink(".[Command Line].swp") = 0
18:27:02 stat(".[Command Line].swp", 0x7fff7ecf18f0) = -1 ENOENT (No such file or directory)
18:27:02 lstat(".[Command Line].swp", 0x7fff7ecf19c0) = -1 ENOENT (No such file or directory)
18:27:02 getcwd("/mnt/w/999_tmp", 4096) = 15
18:27:02 lstat(".[Command Line].swp", 0x7fff7ecf1e80) = -1 ENOENT (No such file or directory)
18:27:02 open(".[Command Line].swp", O_RDWR|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 3
18:27:02 fcntl(3, F_GETFD) = 0
18:27:02 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
18:27:02 getcwd("/mnt/w/999_tmp", 4096) = 15
18:27:02 lseek(3, 0, SEEK_SET) = 0
18:27:02 write(3, "b0VIM 7.3\0\0\0\0\20\0\0\0\0\0\0\0\0\0\0E3\0\0thra"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 stat("/mnt/w/999_tmp/[Command Line]", 0x7fff7ecf1e90) = -1 ENOENT (No such file or directory)
18:27:02 close(3) = 0
18:27:02 unlink(".[Command Line].swp") = 0
18:27:02 stat("/home/thraen/.vim/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:02 open("/home/thraen/.vim/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/var/lib/vim/addons/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:02 open("/var/lib/vim/addons/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/usr/share/vim/vimfiles/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:02 open("/usr/share/vim/vimfiles/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 open(".", O_RDONLY) = 3
18:27:02 fchdir(3) = 0
18:27:02 chdir("/usr/share/vim/vim73/syntax") = 0
18:27:02 getcwd("/usr/share/vim/vim73/syntax", 4096) = 28
18:27:02 fchdir(3) = 0
18:27:02 close(3) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/vim.vim", O_RDONLY) = 3
18:27:02 fcntl(3, F_GETFD) = 0
18:27:02 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
18:27:02 fcntl(3, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
18:27:02 fstat(3, {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f06c40bc000
18:27:02 lseek(3, 0, SEEK_CUR) = 0
18:27:02 read(3, "\" Vim syntax file\n\" Language:\tVi"..., 4096) = 4096
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "enu spe[llgood] spellw[rong] sta"..., 4096) = 4096
18:27:02 read(3, "hellcmdflag shellxquote showcmd "..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "mcmdline invimdisable invinf inv"..., 4096) = 4096
18:27:02 brk(0x145d000) = 0x145d000
18:27:02 read(3, " keyword vimGroup contained\tComm"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "h vimVar\t\t\"\\<[bwglsav]:\\K\\k*\\>\"\n"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "(endf\\>\\|endfu\\%[nction]\\>\\)\"\t\tc"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "yn cluster\tvimStringGroup\tcontai"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "on\tvimSetString\tcontained\tstart="..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "on\t\"\\(\\\\\\|<lt>\\)\\=<\\(bslash\\|plu"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "cludenl\\|skipempty\\|skipwhite\\|d"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "ch\tvimHiCtermError\tcontained\t\"[^"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/lua.vim", {st_mode=S_IFREG|0644, st_size=11897, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/lua.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:02 close(5) = 0
18:27:02 read(3, "*$+ end=+\\.$+\nendif\nunlet s:luap"..., 4096) = 4096
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/perl.vim", {st_mode=S_IFREG|0644, st_size=34201, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/perl.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:02 close(5) = 0
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/ruby.vim", {st_mode=S_IFREG|0644, st_size=27153, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/ruby.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:02 close(5) = 0
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/python.vim", {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/python.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:02 close(5) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/python.vim", {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/python.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:02 close(5) = 0
18:27:02 open(".", O_RDONLY) = 5
18:27:02 fchdir(5) = 0
18:27:02 chdir("/usr/share/vim/vim73/syntax") = 0
18:27:02 getcwd("/usr/share/vim/vim73/syntax", 4096) = 28
18:27:02 fchdir(5) = 0
18:27:02 close(5) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/python.vim", {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/python.vim", O_RDONLY) = 5
18:27:02 fcntl(5, F_GETFD) = 0
18:27:02 fcntl(5, F_SETFD, FD_CLOEXEC) = 0
18:27:02 fcntl(5, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
18:27:02 fstat(5, {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:02 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f06c40bb000
18:27:02 lseek(5, 0, SEEK_CUR) = 0
18:27:02 read(5, "\" Vim syntax file\n\" Language:\tPy"..., 4096) = 4096
18:27:02 stat("/usr/share/vim/vim73/syntax/python.vim", {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(5, "yn match pythonEscape\t+\\\\[abfn"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(5, "ption\n syn keyword pythonExcept"..., 4096) = 3693
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(5, "", 4096) = 0
18:27:02 read(5, "", 4096) = 0
18:27:02 close(5) = 0
18:27:02 munmap(0x7f06c40bb000, 4096) = 0
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/tcl.vim", {st_mode=S_IFREG|0644, st_size=17414, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/tcl.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:02 close(5) = 0
18:27:02 read(3, "+ end=+^\\z1$+\tcontains=@vimTclSc"..., 4096) = 4096
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/syntax/scheme.vim", {st_mode=S_IFREG|0644, st_size=17511, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/scheme.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:02 close(5) = 0
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "r\tvimNumber\nhi def link vimMenuM"..., 4096) = 3295
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "", 4096) = 0
18:27:02 read(3, "", 4096) = 0
18:27:02 close(3) = 0
18:27:02 munmap(0x7f06c40bc000, 4096) = 0
18:27:02 open("/usr/share/vim/vim73/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/usr/share/vim/vimfiles/after/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:02 open("/usr/share/vim/vimfiles/after/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/var/lib/vim/addons/after/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:02 open("/var/lib/vim/addons/after/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/home/thraen/.vim/after/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:02 open("/home/thraen/.vim/after/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 stat("/home/thraen/.vim/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:02 open("/home/thraen/.vim/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 open("/home/thraen/.vim/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/var/lib/vim/addons/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:02 open("/var/lib/vim/addons/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 open("/var/lib/vim/addons/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/usr/share/vim/vimfiles/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:02 open("/usr/share/vim/vimfiles/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 open("/usr/share/vim/vimfiles/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:02 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:02 open(".", O_RDONLY) = 3
18:27:02 fchdir(3) = 0
18:27:02 chdir("/usr/share/vim/vim73/ftplugin") = 0
18:27:02 getcwd("/usr/share/vim/vim73/ftplugin", 4096) = 30
18:27:02 fchdir(3) = 0
18:27:02 close(3) = 0
18:27:02 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:02 open("/usr/share/vim/vim73/ftplugin/vim.vim", O_RDONLY) = 3
18:27:02 fcntl(3, F_GETFD) = 0
18:27:02 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
18:27:02 fcntl(3, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
18:27:02 fstat(3, {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:02 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f06c40bc000
18:27:02 lseek(3, 0, SEEK_CUR) = 0
18:27:02 read(3, "\" Vim filetype plugin\n\" Language"..., 4096) = 2951
18:27:02 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 read(3, "", 4096) = 0
18:27:02 read(3, "", 4096) = 0
18:27:02 close(3) = 0
18:27:02 munmap(0x7f06c40bc000, 4096) = 0
18:27:02 open("/usr/share/vim/vim73/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
18:27:02 getdents(3, /* 179 entries */, 32768) = 5920
18:27:02 getdents(3, /* 0 entries */, 32768) = 0
18:27:02 close(3) = 0
18:27:02 open("/usr/share/vim/vim73/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/usr/share/vim/vimfiles/after/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:02 open("/usr/share/vim/vimfiles/after/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 open("/usr/share/vim/vimfiles/after/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/var/lib/vim/addons/after/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:02 open("/var/lib/vim/addons/after/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 open("/var/lib/vim/addons/after/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 stat("/home/thraen/.vim/after/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:02 open("/home/thraen/.vim/after/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 open("/home/thraen/.vim/after/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 write(1, "\33[57;1H\33[7mtest "..., 522) = 522
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 write(1, "\33[?25l\33[m\r\n\r\n\33[1m-- INSERT --", 29) = 29
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 write(1, "\33[m\33[65;107H\33[1m\33[7m1 \33[64;2H\33"..., 37) = 37
18:27:02 select(1, [0], NULL, [0], {4, 0}) = 1 (in [0], left {3, 869161})
18:27:02 select(1, [0], NULL, [0], NULL) = 1 (in [0])
18:27:02 read(0, "w", 4096) = 1
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 write(1, "\33[?25l\33[m\10\33[38;5;12m:\33[m\33[38;5;1"..., 70) = 70
18:27:02 select(1, [0], NULL, [0], {4, 0}) = 1 (in [0], left {3, 831185})
18:27:02 select(1, [0], NULL, [0], NULL) = 1 (in [0])
18:27:02 read(0, "\r", 4096) = 1
18:27:02 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:02 write(1, "\33[?25l\33[m\33[66;1H\33[K", 19) = 19
18:27:02 write(1, "\33[64;1H\33[38;5;13mw\33[m\33[64;2H\33[K\33"..., 38) = 38
18:27:02 stat("/mnt/w/999_tmp/test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:27:02 access("/mnt/w/999_tmp/test", W_OK) = 0
18:27:02 getcwd("/mnt/w/999_tmp", 4096) = 15
18:27:02 write(1, "\"test\"", 6) = 6
18:27:02 stat("test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:27:02 access("test", W_OK) = 0
18:27:02 write(1, "\r\r\n\33[38;5;15m\33[48;5;1mWARNING: T"..., 138) = 138
18:27:02 select(1, [0], NULL, [0], {4, 0}) = 1 (in [0], left {3, 153642})
18:27:03 select(1, [0], NULL, [0], NULL) = 1 (in [0])
18:27:03 read(0, "y", 4096) = 1
18:27:03 write(1, "\33[my", 4) = 4
18:27:03 getxattr("test", "system.posix_acl_access", 0x7fff7ecf1be0, 132) = -1 EOPNOTSUPP (Operation not supported)
18:27:03 lstat("test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:27:03 lstat("4913", 0x7fff7ecf1ec0) = -1 ENOENT (No such file or directory)
18:27:03 open("4913", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0100777) = 3
18:27:03 fchown(3, 0, 0) = -1 EPERM (Operation not permitted)
18:27:03 stat("4913", {st_mode=S_IFREG|0777, st_size=0, ...}) = 0
18:27:03 close(3) = 0
18:27:03 unlink("4913") = 0
18:27:03 stat("test~", 0x7fff7ecf1cb0) = -1 ENOENT (No such file or directory)
18:27:03 stat("test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:27:03 stat("test~", 0x7fff7ecf0be0) = -1 ENOENT (No such file or directory)
18:27:03 unlink("test~") = -1 ENOENT (No such file or directory)
18:27:03 rename("test", "test~") = 0
18:27:03 fsync(4) = 0
18:27:03 open("test", O_WRONLY|O_CREAT|O_TRUNC, 0777) = 3
18:27:03 write(3, "this is a test\n", 15) = 15
18:27:03 fsync(3) = 0
18:27:03 stat("test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:27:03 stat("test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:27:03 close(3) = 0
18:27:03 chmod("test", 0100777) = -1 EPERM (Operation not permitted)
18:27:03 stat("/mnt/w/999_tmp/test", {st_mode=S_IFREG|0777, st_size=15, ...}) = 0
18:27:03 unlink("test~") = 0
18:27:03 getcwd("/mnt/w/999_tmp", 4096) = 15
18:27:03 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:03 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:03 write(1, "\33[?25l\r\"test\" 1L, 15C written\33[6"..., 104) = 104
18:27:03 select(1, [0], NULL, [0], {4, 0}) = 1 (in [0], left {3, 532009})
18:27:04 select(1, [0], NULL, [0], NULL) = 1 (in [0])
18:27:04 read(0, "\r", 4096) = 1
18:27:04 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:04 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:04 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:04 write(1, "\33[m\33[1;1H\33[3L\33[?25l\33[1;1Hthis is"..., 1401) = 1401
18:27:04 select(1, [0], NULL, [0], {4, 0}) = 1 (in [0], left {3, 261017})
18:27:05 select(1, [0], NULL, [0], NULL) = 1 (in [0])
18:27:05 read(0, "\33", 4096) = 1
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {1, 0}) = 1 (in [0], left {0, 740331})
18:27:05 select(1, [0], NULL, [0], NULL) = 1 (in [0])
18:27:05 read(0, ":", 4096) = 1
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 write(1, "\7\33[?25l\33[66;1H:", 15) = 15
18:27:05 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B4000000 opost -isig -icanon -echo ...}) = 0
18:27:05 ioctl(0, SNDCTL_TMR_START or TCSETS, {B4000000 opost -isig -icanon -echo ...}) = 0
18:27:05 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B4000000 opost -isig -icanon -echo ...}) = 0
18:27:05 uname({sys="Linux", node="zipfl", ...}) = 0
18:27:05 getcwd("/mnt/w/999_tmp", 4096) = 15
18:27:05 stat("/mnt/w/999_tmp/[Command Line]", 0x7fff7ecf1fd0) = -1 ENOENT (No such file or directory)
18:27:05 readlink("[Command Line]", 0x7fff7ecf0950, 4095) = -1 ENOENT (No such file or directory)
18:27:05 open(".[Command Line].swp", O_RDONLY) = -1 ENOENT (No such file or directory)
18:27:05 open(".[Command Line].swp", O_RDWR|O_CREAT|O_EXCL, 0600) = 3
18:27:05 open(".[Command Line].swpx", O_RDONLY) = -1 ENOENT (No such file or directory)
18:27:05 open(".[Command Line].swpx", O_RDWR|O_CREAT|O_EXCL, 0600) = 5
18:27:05 fstat(3, {st_mode=S_IFREG|0777, st_size=0, ...}) = 0
18:27:05 fstat(5, {st_mode=S_IFREG|0777, st_size=0, ...}) = 0
18:27:05 close(5) = 0
18:27:05 unlink(".[Command Line].swpx") = 0
18:27:05 close(3) = 0
18:27:05 unlink(".[Command Line].swp") = 0
18:27:05 stat(".[Command Line].swp", 0x7fff7ecf18f0) = -1 ENOENT (No such file or directory)
18:27:05 lstat(".[Command Line].swp", 0x7fff7ecf19c0) = -1 ENOENT (No such file or directory)
18:27:05 getcwd("/mnt/w/999_tmp", 4096) = 15
18:27:05 lstat(".[Command Line].swp", 0x7fff7ecf1e80) = -1 ENOENT (No such file or directory)
18:27:05 open(".[Command Line].swp", O_RDWR|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 3
18:27:05 fcntl(3, F_GETFD) = 0
18:27:05 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
18:27:05 getcwd("/mnt/w/999_tmp", 4096) = 15
18:27:05 lseek(3, 0, SEEK_SET) = 0
18:27:05 write(3, "b0VIM 7.3\0\0\0\0\20\0\0\0\0\0\0\0\0\0\0E3\0\0thra"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 stat("/mnt/w/999_tmp/[Command Line]", 0x7fff7ecf1e90) = -1 ENOENT (No such file or directory)
18:27:05 close(3) = 0
18:27:05 unlink(".[Command Line].swp") = 0
18:27:05 stat("/home/thraen/.vim/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:05 open("/home/thraen/.vim/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/var/lib/vim/addons/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:05 open("/var/lib/vim/addons/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/usr/share/vim/vimfiles/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:05 open("/usr/share/vim/vimfiles/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 open(".", O_RDONLY) = 3
18:27:05 fchdir(3) = 0
18:27:05 chdir("/usr/share/vim/vim73/syntax") = 0
18:27:05 getcwd("/usr/share/vim/vim73/syntax", 4096) = 28
18:27:05 fchdir(3) = 0
18:27:05 close(3) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/vim.vim", O_RDONLY) = 3
18:27:05 fcntl(3, F_GETFD) = 0
18:27:05 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
18:27:05 fcntl(3, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
18:27:05 fstat(3, {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f06c40bc000
18:27:05 lseek(3, 0, SEEK_CUR) = 0
18:27:05 read(3, "\" Vim syntax file\n\" Language:\tVi"..., 4096) = 4096
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "enu spe[llgood] spellw[rong] sta"..., 4096) = 4096
18:27:05 read(3, "hellcmdflag shellxquote showcmd "..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "mcmdline invimdisable invinf inv"..., 4096) = 4096
18:27:05 read(3, " keyword vimGroup contained\tComm"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "h vimVar\t\t\"\\<[bwglsav]:\\K\\k*\\>\"\n"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "(endf\\>\\|endfu\\%[nction]\\>\\)\"\t\tc"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "yn cluster\tvimStringGroup\tcontai"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "on\tvimSetString\tcontained\tstart="..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "on\t\"\\(\\\\\\|<lt>\\)\\=<\\(bslash\\|plu"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "cludenl\\|skipempty\\|skipwhite\\|d"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "ch\tvimHiCtermError\tcontained\t\"[^"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/lua.vim", {st_mode=S_IFREG|0644, st_size=11897, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/lua.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:05 close(5) = 0
18:27:05 read(3, "*$+ end=+\\.$+\nendif\nunlet s:luap"..., 4096) = 4096
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/perl.vim", {st_mode=S_IFREG|0644, st_size=34201, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/perl.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:05 close(5) = 0
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/ruby.vim", {st_mode=S_IFREG|0644, st_size=27153, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/ruby.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:05 close(5) = 0
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/python.vim", {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/python.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:05 close(5) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/python.vim", {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/python.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:05 close(5) = 0
18:27:05 open(".", O_RDONLY) = 5
18:27:05 fchdir(5) = 0
18:27:05 chdir("/usr/share/vim/vim73/syntax") = 0
18:27:05 getcwd("/usr/share/vim/vim73/syntax", 4096) = 28
18:27:05 fchdir(5) = 0
18:27:05 close(5) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/python.vim", {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/python.vim", O_RDONLY) = 5
18:27:05 fcntl(5, F_GETFD) = 0
18:27:05 fcntl(5, F_SETFD, FD_CLOEXEC) = 0
18:27:05 fcntl(5, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
18:27:05 fstat(5, {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:05 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f06c40bb000
18:27:05 lseek(5, 0, SEEK_CUR) = 0
18:27:05 read(5, "\" Vim syntax file\n\" Language:\tPy"..., 4096) = 4096
18:27:05 stat("/usr/share/vim/vim73/syntax/python.vim", {st_mode=S_IFREG|0644, st_size=11885, ...}) = 0
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(5, "yn match pythonEscape\t+\\\\[abfn"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(5, "ption\n syn keyword pythonExcept"..., 4096) = 3693
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(5, "", 4096) = 0
18:27:05 read(5, "", 4096) = 0
18:27:05 close(5) = 0
18:27:05 munmap(0x7f06c40bb000, 4096) = 0
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/tcl.vim", {st_mode=S_IFREG|0644, st_size=17414, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/tcl.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:05 close(5) = 0
18:27:05 read(3, "+ end=+^\\z1$+\tcontains=@vimTclSc"..., 4096) = 4096
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 stat("/usr/share/vim/vim73/syntax/vim.vim", {st_mode=S_IFREG|0644, st_size=60639, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/syntax/scheme.vim", {st_mode=S_IFREG|0644, st_size=17511, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/scheme.vim", O_RDONLY|O_NONBLOCK) = 5
18:27:05 close(5) = 0
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "r\tvimNumber\nhi def link vimMenuM"..., 4096) = 3295
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "", 4096) = 0
18:27:05 read(3, "", 4096) = 0
18:27:05 close(3) = 0
18:27:05 munmap(0x7f06c40bc000, 4096) = 0
18:27:05 open("/usr/share/vim/vim73/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/usr/share/vim/vimfiles/after/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:05 open("/usr/share/vim/vimfiles/after/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/var/lib/vim/addons/after/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:05 open("/var/lib/vim/addons/after/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/home/thraen/.vim/after/syntax/vim.vim", 0x7fff7eceeaa0) = -1 ENOENT (No such file or directory)
18:27:05 open("/home/thraen/.vim/after/syntax/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 stat("/home/thraen/.vim/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:05 open("/home/thraen/.vim/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 open("/home/thraen/.vim/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/var/lib/vim/addons/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:05 open("/var/lib/vim/addons/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 open("/var/lib/vim/addons/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/usr/share/vim/vimfiles/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:05 open("/usr/share/vim/vimfiles/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 open("/usr/share/vim/vimfiles/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:05 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:05 open(".", O_RDONLY) = 3
18:27:05 fchdir(3) = 0
18:27:05 chdir("/usr/share/vim/vim73/ftplugin") = 0
18:27:05 getcwd("/usr/share/vim/vim73/ftplugin", 4096) = 30
18:27:05 fchdir(3) = 0
18:27:05 close(3) = 0
18:27:05 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:05 open("/usr/share/vim/vim73/ftplugin/vim.vim", O_RDONLY) = 3
18:27:05 fcntl(3, F_GETFD) = 0
18:27:05 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
18:27:05 fcntl(3, F_GETFL) = 0x8000 (flags O_RDONLY|O_LARGEFILE)
18:27:05 fstat(3, {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:05 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f06c40bc000
18:27:05 lseek(3, 0, SEEK_CUR) = 0
18:27:05 read(3, "\" Vim filetype plugin\n\" Language"..., 4096) = 2951
18:27:05 stat("/usr/share/vim/vim73/ftplugin/vim.vim", {st_mode=S_IFREG|0644, st_size=2951, ...}) = 0
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 read(3, "", 4096) = 0
18:27:05 read(3, "", 4096) = 0
18:27:05 close(3) = 0
18:27:05 munmap(0x7f06c40bc000, 4096) = 0
18:27:05 open("/usr/share/vim/vim73/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
18:27:05 getdents(3, /* 179 entries */, 32768) = 5920
18:27:05 getdents(3, /* 0 entries */, 32768) = 0
18:27:05 close(3) = 0
18:27:05 open("/usr/share/vim/vim73/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/usr/share/vim/vimfiles/after/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:05 open("/usr/share/vim/vimfiles/after/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 open("/usr/share/vim/vimfiles/after/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/var/lib/vim/addons/after/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:05 open("/var/lib/vim/addons/after/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 open("/var/lib/vim/addons/after/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 stat("/home/thraen/.vim/after/ftplugin/vim.vim", 0x7fff7ecefdb0) = -1 ENOENT (No such file or directory)
18:27:05 open("/home/thraen/.vim/after/ftplugin/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 open("/home/thraen/.vim/after/ftplugin/vim/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 write(1, "\33[57;1H\33[7mtest "..., 522) = 522
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 write(1, "\33[?25l\33[m\r\n\r\n\33[1m-- INSERT --", 29) = 29
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 write(1, "\33[m\33[65;107H\33[1m\33[7m1 \33[64;2H\33"..., 37) = 37
18:27:05 select(1, [0], NULL, [0], {4, 0}) = 1 (in [0], left {3, 934884})
18:27:05 select(1, [0], NULL, [0], NULL) = 1 (in [0])
18:27:05 read(0, "q", 4096) = 1
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 write(1, "\33[?25l\33[m\10\33[38;5;12m:\33[m\33[38;5;1"..., 70) = 70
18:27:05 select(1, [0], NULL, [0], {4, 0}) = 1 (in [0], left {3, 831221})
18:27:05 select(1, [0], NULL, [0], NULL) = 1 (in [0])
18:27:05 read(0, "\r", 4096) = 1
18:27:05 select(1, [0], NULL, [0], {0, 0}) = 0 (Timeout)
18:27:05 write(1, "\33[?25l\33[m\33[66;1H\33[K", 19) = 19
18:27:05 write(1, "\33[64;1H\33[38;5;13mq\33[m\33[64;2H\33[K\33"..., 38) = 38
18:27:05 open("/home/thraen/.viminfo", O_RDONLY) = 3
18:27:05 stat("/home/thraen/.viminfo", {st_mode=S_IFREG|0600, st_size=22220, ...}) = 0
18:27:05 getuid() = 1000
18:27:05 getuid() = 1000
18:27:05 stat("/home/thraen/.viminfo.tmp", 0x7fff7ecf21f0) = -1 ENOENT (No such file or directory)
18:27:05 umask(0) = 022
18:27:05 open("/home/thraen/.viminfo.tmp", O_WRONLY|O_CREAT|O_EXCL|O_NOFOLLOW, 0600) = 5
18:27:05 umask(022) = 0
18:27:05 fcntl(5, F_GETFL) = 0x28001 (flags O_WRONLY|O_LARGEFILE|O_NOFOLLOW)
18:27:05 fstat(5, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
18:27:05 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f06c40bc000
18:27:05 lseek(5, 0, SEEK_CUR) = 0
18:27:05 fchown(5, 1000, 1000) = 0
18:27:05 fstat(3, {st_mode=S_IFREG|0600, st_size=22220, ...}) = 0
18:27:05 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f06c40bb000
18:27:05 read(3, "# This viminfo file was generate"..., 4096) = 4096
18:27:05 read(3, "t/w/999_tmp/strace\n-' 159 6 /"..., 4096) = 4096
18:27:05 write(5, "# This viminfo file was generate"..., 4096) = 4096
18:27:05 read(3, "0\n\n> /mnt/w/999_tmp/strace\n\t\"\t91"..., 4096) = 4096
18:27:05 write(5, "t/w/999_tmp/strace\n-' 159 6 /"..., 4096) = 4096
18:27:05 read(3, "\n\t.\t5\t0\n\t+\t5\t0\n\n> /mnt/o/01_Date"..., 4096) = 4096
18:27:05 write(5, "0\n\n> /mnt/w/999_tmp/strace\n\t\"\t91"..., 4096) = 4096
18:27:05 read(3, "3\n\t+\t256\t12\n\t+\t258\t0\n\t+\t250\t60\n\t"..., 4096) = 4096
18:27:05 write(5, "\n\t.\t5\t0\n\t+\t5\t0\n\n> /mnt/o/01_Date"..., 4096) = 4096
18:27:05 read(3, "2\n\t+\t35\t9\n\t+\t36\t0\n\t+\t36\t15\n\t+\t37"..., 4096) = 1740
18:27:05 write(5, "3\n\t+\t256\t12\n\t+\t258\t0\n\t+\t250\t60\n\t"..., 4096) = 4096
18:27:05 read(3, "", 4096) = 0
18:27:05 write(5, "2\n\t+\t35\t9\n\t+\t36\t0\n\t+\t36\t15\n\t+\t37"..., 1740) = 1740
18:27:05 close(5) = 0
18:27:05 munmap(0x7f06c40bc000, 4096) = 0
18:27:05 close(3) = 0
18:27:05 munmap(0x7f06c40bb000, 4096) = 0
18:27:05 stat("/home/thraen/.viminfo.tmp", {st_mode=S_IFREG|0600, st_size=22220, ...}) = 0
18:27:05 stat("/home/thraen/.viminfo", {st_mode=S_IFREG|0600, st_size=22220, ...}) = 0
18:27:05 unlink("/home/thraen/.viminfo") = 0
18:27:05 rename("/home/thraen/.viminfo.tmp", "/home/thraen/.viminfo") = 0
18:27:05 munmap(0x7f06c1c24000, 5273240) = 0
18:27:05 munmap(0x7f06c19d1000, 2433296) = 0
18:27:05 munmap(0x7f06c1642000, 3731320) = 0
18:27:05 munmap(0x7f06c142a000, 2191920) = 0
18:27:05 munmap(0x7f06c1009000, 2105608) = 0
18:27:05 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B4000000 opost -isig -icanon -echo ...}) = 0
18:27:05 ioctl(0, SNDCTL_TMR_START or TCSETS, {B4000000 opost isig icanon echo ...}) = 0
18:27:05 ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B4000000 opost isig icanon echo ...}) = 0
18:27:05 write(1, "\33[?1l\33>", 7) = 7
18:27:05 write(1, "\33[?25h\33[r\33[?1049l", 17) = 17
18:27:05 close(4) = 0
18:27:05 unlink("/mnt/w/999_tmp/.test.swp") = 0
18:27:05 exit_group(0) = ?
^ permalink raw reply [flat|nested] 9+ messages in thread