- Install Greasemonkey
- Click Raw link
- Install Tampermonkey
- Click Raw link
/* | |
* Cygwin path conversion API test. | |
*/ | |
#include <sys/cygwin.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#ifndef MAX_PATH | |
# ifdef PATH_MAX |
diff --git a/src/os_unix.c b/src/os_unix.c | |
index 8f059be..f7f4115 100644 | |
--- a/src/os_unix.c | |
+++ b/src/os_unix.c | |
@@ -2498,6 +2498,14 @@ mch_FullName(fname, buf, len, force) | |
# else | |
cygwin_conv_to_posix_path(fname, posix_fname); | |
# endif | |
+ if (STRCMP(fname, posix_fname) != 0) | |
+ { |
diff --git a/src/Makefile b/src/Makefile | |
index 90b2f0c..3139102 100644 | |
--- a/src/Makefile | |
+++ b/src/Makefile | |
@@ -1926,6 +1926,7 @@ test1 \ | |
test_options \ | |
test_perl \ | |
test_qf_title \ | |
+ test_resolve_swap \ | |
test_ruby \ |
@-moz-document domain("twitter.com") { | |
.GalleryNav--prev, | |
.GalleryNav--next { | |
width: 30% !important; | |
} | |
.Gallery-content, | |
.media-image { | |
width: auto !important; | |
height: auto !important; | |
} |
*.ipynb filter=clean-ipynb |
Homebrew build logs for cmigemo on Ubuntu 18.04.2 LTS | |
Build date: 2019-04-16 10:43:26 |
#!/bin/bash -eu | |
target=${1:-.} | |
cmd= | |
if [[ -d $target ]]; then | |
# open directory | |
cmd=explorer.exe | |
fi | |
if [[ -e $target ]]; then |
@setlocal enableextensions disabledelayedexpansion | |
@echo off | |
if not x%CMDNOINIT% == x goto :done | |
call :check_interactive "%CMDCMDLINE:"=""%" | |
if ERRORLEVEL 2 goto :interactive_silent | |
if ERRORLEVEL 1 goto :interactive | |
goto :done |
@echo off | |
setlocal | |
set target=%~1 | |
if "" == "%target%" set target=. | |
if not "" == "%VIM_TERMINAL%" ( | |
echo | set /p=]51;["drop","%target:\=\\%"] | |
) else if not "" == "%VIM_SERVERNAME%" ( | |
gvim --servername %VIM_SERVERNAME% --remote-silent "%target%" |