This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"global": { | |
"check_for_updates_on_startup": true, | |
"show_in_menu_bar": false, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"parameters": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>TEST</title> | |
<link rel="stylesheet" type='text/css' href="./test.css"> | |
</head> | |
<body> | |
<p>hogehoge</p> | |
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef jvgrep | |
_jvgrep() { | |
_arguments \ | |
'--help[show help]' \ | |
'-F[PATTERN is a set of newline-separated fixed strings]' \ | |
'-G[PATTERN is a basic regular expression (BRE)]' \ | |
'-P[PATTERN is a Perl regular expression (ERE)]' \ | |
'-S[verbose messages]' \ | |
'-V[print version information and exit]' \ | |
'-8[show result as utf8 text]' \ |