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
g_LastCtrlKeyDownTime := 0 | |
g_AbortSendEsc := false | |
g_ControlRepeatDetected := false | |
*CapsLock:: | |
if (g_ControlRepeatDetected) | |
{ | |
return | |
} |
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
### OPTIONS | |
# Options start with one or two dashes. Many of the options require an additional value next to them. | |
# | |
# The short "single-dash" form of the options, -d for example, may be used with or without a space between it and its value, although a space is a recommended separator. The long "double-dash" form, -d, --data for example, requires a space between it and its value. | |
# | |
# Short version options that don't need any additional values can be used immediately next to each other, like for example you can specify all the options -O, -L and -v at once as -OLv. | |
# | |
# In general, all boolean options are enabled with --option and yet again disabled with --no-option. That is, you use the exact same option name but prefix it with "no-". However, in this list we mostly only list and show the --option version of them. (This concept with --no options was added in 7.19.0. Previously most options were toggled on/off on repeated use of the same command line option.) | |
# |
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
[README] | |
# html= | |
# A html file (HTML fragment) which is included on the gitweb project | |
# "summary" page inside `<div>` block element. You can use it for longer | |
# description of a project, to provide links (for example to project's | |
# homepage), etc. This is recognized only if XSS prevention is off | |
# (`$prevent_xss` is false, see linkgit:gitweb.conf[5]); a way to include | |
# a README safely when XSS prevention is on may be worked out in the | |
# future. |
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
#include<unistd.h> | |
extern char **environ; | |
int main(int argc, char **argv) { | |
char *args[argc+2]; | |
args[0] = "icc"; | |
args[1] = "-E"; | |
args[argc+1] = 0; | |
if (argc > 1) { | |
for (int a = argc-2; a >= 0; --a) { | |
args[a+2] = argv[a+1]; |
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
{ | |
"version": "1.45-133-g291f2709", | |
"bin": [ | |
[ | |
"rclone.exe", | |
"rclone-beta" | |
] | |
], | |
"architecture": { | |
"64bit": { |
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
root=true | |
[*] | |
indent_style=tab | |
indent_size=tab | |
tab_width=2 | |
#end_of_line=lf | |
charset=utf-8 | |
trim_trailing_whitespace=true | |
#insert_final_newline=true |
Many of these descriptions and examples come from various resources (see Acknowledgements section), summarized in my own words.
C++14 includes the following new language features:
C++11 includes the following new language features:
C++11 includes the following new language features:
OlderNewer