fix support for neovim
This commit is contained in:
parent
924d2b4bf9
commit
80604f4fc6
4 changed files with 3 additions and 3 deletions
2
.hgrc
2
.hgrc
|
|
@ -2,8 +2,6 @@
|
||||||
username = Barak Michener <me@barakmich.com>
|
username = Barak Michener <me@barakmich.com>
|
||||||
|
|
||||||
[extensions]
|
[extensions]
|
||||||
hgext.bookmarks =
|
|
||||||
hggit =
|
|
||||||
fetch =
|
fetch =
|
||||||
color =
|
color =
|
||||||
|
|
||||||
|
|
|
||||||
1
.nvim
Symbolic link
1
.nvim
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
.vim
|
||||||
1
.nvimrc
Symbolic link
1
.nvimrc
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
.vimrc
|
||||||
|
|
@ -24,7 +24,7 @@ int main()
|
||||||
/* create the fifo. if we get EEXIST, then someone else created a
|
/* create the fifo. if we get EEXIST, then someone else created a
|
||||||
* file with our intended name right before we did; we should pick
|
* file with our intended name right before we did; we should pick
|
||||||
* a new name and try again. see the source to mkstemp(3). */
|
* a new name and try again. see the source to mkstemp(3). */
|
||||||
while (mkfifo(mktemp(tempfile), 0600) == -1) {
|
while (mkfifo(mkstemp(tempfile), 0600) == -1) {
|
||||||
if (errno != EEXIST) {
|
if (errno != EEXIST) {
|
||||||
perror("wye: couldn't create fifo");
|
perror("wye: couldn't create fifo");
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue