- Install Greasemonkey
- Click Raw link
- Install Tampermonkey
- Click Raw link
| @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 |
| #!/bin/bash -eu | |
| target=${1:-.} | |
| cmd= | |
| if [[ -d $target ]]; then | |
| # open directory | |
| cmd=explorer.exe | |
| fi | |
| if [[ -e $target ]]; then |
| Homebrew build logs for cmigemo on Ubuntu 18.04.2 LTS | |
| Build date: 2019-04-16 10:43:26 |
| *.ipynb filter=clean-ipynb |
| @-moz-document domain("twitter.com") { | |
| .GalleryNav--prev, | |
| .GalleryNav--next { | |
| width: 30% !important; | |
| } | |
| .Gallery-content, | |
| .media-image { | |
| width: auto !important; | |
| height: auto !important; | |
| } |
| 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 \ |
| 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) | |
| + { |
| /* | |
| * Cygwin path conversion API test. | |
| */ | |
| #include <sys/cygwin.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #ifndef MAX_PATH | |
| # ifdef PATH_MAX |
| // ==UserScript== | |
| // @name Clean Google links | |
| // @namespace http://d.hatena.ne.jp/MillyC/ | |
| // @description clean links in Google search result page (remove "onmousedown" attribute). | |
| // @include http://www.google.com/search?* | |
| // @include https://www.google.com/search?* | |
| // @include http://www.google.co.*/search?* | |
| // @include https://www.google.co.*/search?* | |
| // @grant none | |
| // ==/UserScript== |