Files
openide/python/testData/commandLine/spaces.txt
Ilya.Kazakevich eb06387c01 PY-23279, PY-9963: Support quotes in commandline interface:
* GeneralCommandLine does not support "as is" command line:
 it should be splitted to arguments (due to ProcessBuilder interface).
So, we need to support quotes in command line to use to split arguments
2017-03-31 02:16:05 +03:00

21 lines
791 B
Plaintext

FILE
CommandLineCommandImpl(COMMAND)
PsiElement(LITERAL_STARTS_FROM_LETTER)('fake_command')
PsiWhiteSpace(' ')
CommandLineArgumentImpl(ARGUMENT)
PsiElement(SPACED_LITERAL_STARTS_FROM_LETTER)('"spam and eggs"')
PsiWhiteSpace(' ')
CommandLineArgumentImpl(ARGUMENT)
PsiElement(LITERAL_STARTS_FROM_LETTER)('chicken')
PsiWhiteSpace(' ')
CommandLineOptionImpl(OPTION)
PsiElement(LONG_OPTION_NAME_TOKEN)('--with')
PsiElement(=)('=')
CommandLineArgumentImpl(ARGUMENT)
PsiElement(LITERAL_STARTS_FROM_LETTER)('ketchup')
PsiWhiteSpace(' ')
CommandLineOptionImpl(OPTION)
PsiElement(LONG_OPTION_NAME_TOKEN)('--with')
PsiElement(=)('=')
CommandLineArgumentImpl(ARGUMENT)
PsiElement(SINGLE_Q_SPACED_LITERAL_STARTS_FROM_LETTER)(''russian mustard'')