-
Notifications
You must be signed in to change notification settings - Fork 37
Rm win32 sgtty take 2 #213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
7484bb5
c766169
df55007
e6d1688
a4c314e
09a4c9a
6089855
5297f56
07420c3
33ca666
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,3 +33,9 @@ Makefile.in | |
| *.exe | ||
| git.c | ||
| logo_win.res | ||
| .vscode/browse.* | ||
| .* | ||
| *~ | ||
| *.swp | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,111 @@ | ||
| { | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am hesitant to approve adding this files. However, I think I would be fine with adding a defaults directory or similar with them inside, so people could just copy them into the main directory.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That works for me. It needs documentation to be really useful anyway. I was thinking of asking if we could add a
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| "env": { | ||
| "myIncludePath": [ | ||
| "${workspaceFolder}", | ||
| "/usr/lib/x86_64-linux-gnu/wx/include/gtk3-unicode-3.0", | ||
| "/usr/include/wx-3.0" | ||
| ] | ||
| }, | ||
| "configurations": [ | ||
| { | ||
| "name": "Linux", | ||
| "compilerPath": "/usr/bin/gcc", | ||
| "compilerArgs": [], | ||
| "includePath": [ | ||
| "${myIncludePath}" | ||
| ], | ||
| "defines": [ | ||
| "HAVE_CONFIG_H", | ||
| "_FILE_OFFSET_BITS=64", | ||
| "WXUSINGDLL", | ||
| "__WXGTK__" | ||
| ], | ||
| "cStandard": "c90", | ||
| "cppStandard": "gnu++14", | ||
| "configurationProvider": "ms-vscode.cmake-tools", | ||
| "forcedInclude": [], | ||
| "compileCommands": [], | ||
| "dotConfig": "${workspaceFolder}/.config", | ||
| "mergeConfigurations": true, | ||
| "customConfigurationVariables": { | ||
| "myVar": "myvalue" | ||
| }, | ||
| "browse": { | ||
| "path": [ | ||
| "${myIncludePath}", | ||
| "/usr/include", | ||
| "${workspaceFolder}" | ||
| ], | ||
| "limitSymbolsToIncludedHeaders": true, | ||
| "databaseFilename": "${workspaceFolder}/.vscode/browse.vc.db" | ||
| } | ||
| }, | ||
| { | ||
| "name": "win32", | ||
| "compilerPath": "/usr/bin/gcc", | ||
| "compilerArgs": [], | ||
| "includePath": [ | ||
| "${workspaceFolder}/**", | ||
| "${myIncludePath}" | ||
| ], | ||
| "defines": [ | ||
| "WIN32", | ||
| "HAVE_WX", | ||
| "HAVE_CONFIG_C", | ||
| "X_DISPLAY_MISSING", | ||
| "__WXDEBUG__", | ||
| "__WXMSW__" | ||
| ], | ||
| "cStandard": "c90", | ||
| "cppStandard": "gnu++14", | ||
| "configurationProvider": "ms-vscode.cmake-tools", | ||
| "forcedInclude": [], | ||
| "compileCommands": [], | ||
| "dotConfig": "${workspaceFolder}/.config", | ||
| "mergeConfigurations": true, | ||
| "customConfigurationVariables": { | ||
| "myVar": "myvalue" | ||
| }, | ||
| "browse": { | ||
| "path": [ | ||
| "${myIncludePath}", | ||
| "/usr/include", | ||
| "${workspaceFolder}" | ||
| ], | ||
| "limitSymbolsToIncludedHeaders": true, | ||
| "databaseFilename": "${workspaceFolder}/.vscode/browse.vc.db" | ||
| } | ||
| }, | ||
| { | ||
| "name": "dos", | ||
| "compilerPath": "/usr/bin/gcc", | ||
| "compilerArgs": [], | ||
| "includePath": [ | ||
| "${myIncludePath}" | ||
| ], | ||
| "defines": [ | ||
| "__TURBOC__" | ||
| ], | ||
| "cStandard": "c90", | ||
| "cppStandard": "gnu++14", | ||
| "configurationProvider": "ms-vscode.cmake-tools", | ||
| "forcedInclude": [], | ||
| "compileCommands": [], | ||
| "dotConfig": "${workspaceFolder}/.config", | ||
| "mergeConfigurations": true, | ||
| "customConfigurationVariables": { | ||
| "myVar": "myvalue" | ||
| }, | ||
| "browse": { | ||
| "path": [ | ||
| "${myIncludePath}", | ||
| "/usr/include", | ||
| "${workspaceFolder}" | ||
| ], | ||
| "limitSymbolsToIncludedHeaders": true, | ||
| "databaseFilename": "${workspaceFolder}/.vscode/browse.vc.db" | ||
| } | ||
| } | ||
| ], | ||
| "version": 4 | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| { | ||
| "C_Cpp.default.compilerPath": "C:/msys64/mingw32/bin/gcc.exe", | ||
| "terminal.integrated.profiles.windows": { | ||
| "MSYS2": { | ||
| "path": "C:\\msys64\\usr\\bin\\bash.exe", | ||
| "args": [ | ||
| "--login", | ||
| "-i" | ||
| ], | ||
| "env": { | ||
| "MSYSTEM": "MINGW64", | ||
| "CHERE_INVOKING": "1", | ||
| "MINGW_CHOST": "x86_64-w64-mingw32", | ||
| "MINGW_PACKAGE_PREFIX": "mingw-w64-x86_64", | ||
| "MSYSTEM_CARCH": "x86_64", | ||
| "MSYSTEM_CHOST": "x86_64-w64-mingw32", | ||
| "PS1": "\\[\\e]0;\\w\\a\\]\\n\\[\\e[32m\\]\\u@\\h \\[\\e[35m\\]$MSYSTEM\\[\\e[0m\\] \\[\\e[33m\\]\\w\\[\\e[0m\\]\\n\\$", | ||
| "MSYSCON": "mintty.exe", | ||
| "MSYSTEM_PREFIX": "/mingw64", | ||
| "PKG_CONFIG_SYSTEM_INCLUDE_PATH": "/mingw64/include", | ||
| "PKG_CONFIG_PATH": "/mingw64/lib/pkgconfig:/mingw64/share/pkgconfig", | ||
| "MANPATH": "/mingw64/local/man:/mingw64/share/man:/usr/local/man:/usr/share/man:/usr/man:/share/man", | ||
| "INFOPATH": "/mingw64/local/info:/mingw64/share/info:/usr/local/info:/usr/share/info:/usr/info:/share/info", | ||
| "ACLOCAL_PATH": "/mingw64/share/aclocal:/usr/share/aclocal", | ||
| "PKG_CONFIG_SYSTEM_LIBRARY_PATH": "/mingw64/lib", | ||
| "XDG_DATA_DIRS": "/mingw64/share/:/usr/local/share/:/usr/share/", | ||
| "PATH": "/mingw64/bin:/usr/local/bin:/usr/bin:/bin:/c/Windows/System32:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0/:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl", | ||
| } | ||
| } | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, I think I would rather add
.????*than private space unicode characters.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or maybe
.[!:alnum:][!:alnum:][!:alnum:][!:alnum:]*?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have a strong opinion