1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-09 18:34:06 +02:00

Remove generated files for tests

This commit is contained in:
filipp 2023-06-05 21:51:37 +03:00
parent 89e74b2011
commit c9b9bb6cf8
6 changed files with 0 additions and 171 deletions
annotation-processors/src/main/kotlin/com/intellij/vim/processors
src/test/resources
vim-engine/src/test/resources

View File

@ -38,9 +38,6 @@ class ExCommandProcessor(private val environment: SymbolProcessorEnvironment): S
val filePath = Path(environment.options["generated_directory"]!!, environment.options["ex_commands_file"]!!)
writer.writeFile(filePath, fileContent)
val testFilePath = Path(environment.options["generated_test_directory"]!!, environment.options["ex_commands_file"]!!)
writer.writeFile(testFilePath, fileContent)
return emptyList()
}

View File

@ -19,8 +19,6 @@ import com.google.devtools.ksp.symbol.KSFile
import com.google.devtools.ksp.symbol.KSVisitorVoid
import com.intellij.vim.FileWriter
import com.intellij.vim.annotations.VimscriptFunction
import org.yaml.snakeyaml.DumperOptions
import org.yaml.snakeyaml.Yaml
import kotlin.io.path.Path
class VimscriptFunctionProcessor(private val environment: SymbolProcessorEnvironment) : SymbolProcessor {
@ -41,9 +39,6 @@ class VimscriptFunctionProcessor(private val environment: SymbolProcessorEnviron
val filePath = Path(environment.options["generated_directory"]!!, environment.options["vimscript_functions_file"]!!)
writer.writeFile(filePath, fileContent)
val testFilePath = Path(environment.options["generated_test_directory"]!!, environment.options["vimscript_functions_file"]!!)
writer.writeFile(testFilePath, fileContent)
return emptyList()
}

View File

@ -1,12 +0,0 @@
# This file was automatically generated by [com.intellij.vim.processor.EXCommandProcessor].
# If you are going to change it, you are probably doing something wrong, as your changes will be overridden by the next `gradle kspKotlin` run.
actionl[ist]: com.maddyhome.idea.vim.vimscript.model.commands.ActionListCommand
b[uffer]: com.maddyhome.idea.vim.vimscript.model.commands.BufferCommand
ls: com.maddyhome.idea.vim.vimscript.model.commands.BufferListCommand
files: com.maddyhome.idea.vim.vimscript.model.commands.BufferListCommand
buffers: com.maddyhome.idea.vim.vimscript.model.commands.BufferListCommand
'!': com.maddyhome.idea.vim.vimscript.model.commands.CmdFilterCommand
g[lobal]: com.maddyhome.idea.vim.vimscript.model.commands.GlobalCommand
v[global]: com.maddyhome.idea.vim.vimscript.model.commands.GlobalCommand
h[elp]: com.maddyhome.idea.vim.vimscript.model.commands.HelpCommand

View File

@ -1,7 +0,0 @@
# This file was automatically generated by [com.intellij.vim.processor.VimscriptFunctionProcessor].
# If you are going to change it, you are probably doing something wrong, as your changes will be overridden by the next `gradle kspKotlin` run.
line: com.maddyhome.idea.vim.vimscript.model.functions.handlers.LineFunctionHandler
col: com.maddyhome.idea.vim.vimscript.model.functions.handlers.ColFunctionHandler
has: com.maddyhome.idea.vim.vimscript.model.functions.handlers.HasFunctionHandler
submatch: com.maddyhome.idea.vim.vimscript.model.functions.handlers.SubmatchFunctionHandler

View File

@ -1,129 +0,0 @@
# This file was automatically generated by [com.intellij.vim.processor.EXCommandProcessor].
# If you are going to change it, you are probably doing something wrong, as your changes will be overridden by the next `gradle kspKotlin` run.
action: com.maddyhome.idea.vim.vimscript.model.commands.ActionCommand
as[cii]: com.maddyhome.idea.vim.vimscript.model.commands.AsciiCommand
bd[elete]: com.maddyhome.idea.vim.vimscript.model.commands.BufferCloseCommand
cal[l]: com.maddyhome.idea.vim.vimscript.model.commands.CallCommand
comc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.CmdClearCommand
com[mand]: com.maddyhome.idea.vim.vimscript.model.commands.CmdCommand
t: com.maddyhome.idea.vim.vimscript.model.commands.CopyTextCommand
co[py]: com.maddyhome.idea.vim.vimscript.model.commands.CopyTextCommand
delc[ommand]: com.maddyhome.idea.vim.vimscript.model.commands.DelCmdCommand
d[elete]: com.maddyhome.idea.vim.vimscript.model.commands.DeleteLinesCommand
delm[arks]: com.maddyhome.idea.vim.vimscript.model.commands.DeleteMarksCommand
delf[unction]: com.maddyhome.idea.vim.vimscript.model.commands.DelfunctionCommand
dig[raphs]: com.maddyhome.idea.vim.vimscript.model.commands.DigraphCommand
dump[line]: com.maddyhome.idea.vim.vimscript.model.commands.DumpLineCommand
ec[ho]: com.maddyhome.idea.vim.vimscript.model.commands.EchoCommand
e[dit]: com.maddyhome.idea.vim.vimscript.model.commands.EditFileCommand
bro[wse]: com.maddyhome.idea.vim.vimscript.model.commands.EditFileCommand
exe[cute]: com.maddyhome.idea.vim.vimscript.model.commands.ExecuteCommand
qa[ll]: com.maddyhome.idea.vim.vimscript.model.commands.ExitCommand
xa[ll]: com.maddyhome.idea.vim.vimscript.model.commands.ExitCommand
wqa[ll]: com.maddyhome.idea.vim.vimscript.model.commands.ExitCommand
quita[ll]: com.maddyhome.idea.vim.vimscript.model.commands.ExitCommand
f[ile]: com.maddyhome.idea.vim.vimscript.model.commands.FileCommand
cla[ss]: com.maddyhome.idea.vim.vimscript.model.commands.FindClassCommand
fin[d]: com.maddyhome.idea.vim.vimscript.model.commands.FindFileCommand
sym[bol]: com.maddyhome.idea.vim.vimscript.model.commands.FindSymbolCommand
go[to]: com.maddyhome.idea.vim.vimscript.model.commands.GotoCharacterCommand
his[tory]: com.maddyhome.idea.vim.vimscript.model.commands.HistoryCommand
j[oin]: com.maddyhome.idea.vim.vimscript.model.commands.JoinLinesCommand
ju[mps]: com.maddyhome.idea.vim.vimscript.model.commands.JumpsCommand
let: com.maddyhome.idea.vim.vimscript.model.commands.LetCommand
lockv[ar]: com.maddyhome.idea.vim.vimscript.model.commands.LockVarCommand
unlo[ckvar]: com.maddyhome.idea.vim.vimscript.model.commands.UnlockVarCommand
k: com.maddyhome.idea.vim.vimscript.model.commands.MarkCommand
ma[rk]: com.maddyhome.idea.vim.vimscript.model.commands.MarkCommand
marks: com.maddyhome.idea.vim.vimscript.model.commands.MarksCommand
m[ove]: com.maddyhome.idea.vim.vimscript.model.commands.MoveTextCommand
n[ext]: com.maddyhome.idea.vim.vimscript.model.commands.NextFileCommand
bn[ext]: com.maddyhome.idea.vim.vimscript.model.commands.NextFileCommand
tabn[ext]: com.maddyhome.idea.vim.vimscript.model.commands.NextTabCommand
noh[lsearch]: com.maddyhome.idea.vim.vimscript.model.commands.NoHLSearchCommand
norm[al]: com.maddyhome.idea.vim.vimscript.model.commands.NormalCommand
on[ly]: com.maddyhome.idea.vim.vimscript.model.commands.OnlyCommand
pa[ckadd]: com.maddyhome.idea.vim.vimscript.model.commands.PackaddCommand
Plug[in]: com.maddyhome.idea.vim.vimscript.model.commands.PlugCommand
prev[ious]: com.maddyhome.idea.vim.vimscript.model.commands.PreviousFileCommand
bp[revious]: com.maddyhome.idea.vim.vimscript.model.commands.PreviousFileCommand
N[ext]: com.maddyhome.idea.vim.vimscript.model.commands.PreviousFileCommand
tabp[previous]: com.maddyhome.idea.vim.vimscript.model.commands.PreviousTabCommand
tabN[ext]: com.maddyhome.idea.vim.vimscript.model.commands.PreviousTabCommand
p[rint]: com.maddyhome.idea.vim.vimscript.model.commands.PrintCommand
P[rint]: com.maddyhome.idea.vim.vimscript.model.commands.PrintCommand
pro[mptfind]: com.maddyhome.idea.vim.vimscript.model.commands.PromptFindCommand
promptr[eplace]: com.maddyhome.idea.vim.vimscript.model.commands.PromptReplaceCommand
pu[t]: com.maddyhome.idea.vim.vimscript.model.commands.PutLinesCommand
q[uit]: com.maddyhome.idea.vim.vimscript.model.commands.QuitCommand
clo[se]: com.maddyhome.idea.vim.vimscript.model.commands.QuitCommand
hi[de]: com.maddyhome.idea.vim.vimscript.model.commands.QuitCommand
red[o]: com.maddyhome.idea.vim.vimscript.model.commands.RedoCommand
dis[play]: com.maddyhome.idea.vim.vimscript.model.commands.RegistersCommand
reg[isters]: com.maddyhome.idea.vim.vimscript.model.commands.RegistersCommand
'@': com.maddyhome.idea.vim.vimscript.model.commands.RepeatCommand
argu[ment]: com.maddyhome.idea.vim.vimscript.model.commands.SelectFileCommand
fir[st]: com.maddyhome.idea.vim.vimscript.model.commands.SelectFirstFileCommand
la[st]: com.maddyhome.idea.vim.vimscript.model.commands.SelectLastFileCommand
se[t]: com.maddyhome.idea.vim.vimscript.model.commands.SetCommand
setl[ocal]: com.maddyhome.idea.vim.vimscript.model.commands.SetLocalCommand
sethandler: com.maddyhome.idea.vim.vimscript.model.commands.SetHandlerCommand
sh[ell]: com.maddyhome.idea.vim.vimscript.model.commands.ShellCommand
sor[t]: com.maddyhome.idea.vim.vimscript.model.commands.SortCommand
so[urce]: com.maddyhome.idea.vim.vimscript.model.commands.SourceCommand
sp[lit]: com.maddyhome.idea.vim.vimscript.model.commands.SplitCommand
vs[plit]: com.maddyhome.idea.vim.vimscript.model.commands.SplitCommand
'~': com.maddyhome.idea.vim.vimscript.model.commands.SubstituteCommand
'&': com.maddyhome.idea.vim.vimscript.model.commands.SubstituteCommand
s[ubstitute]: com.maddyhome.idea.vim.vimscript.model.commands.SubstituteCommand
tabc[lose]: com.maddyhome.idea.vim.vimscript.model.commands.TabCloseCommand
tabm[ove]: com.maddyhome.idea.vim.vimscript.model.commands.TabMoveCommand
tabo[nly]: com.maddyhome.idea.vim.vimscript.model.commands.TabOnlyCommand
u[ndo]: com.maddyhome.idea.vim.vimscript.model.commands.UndoCommand
wa[ll]: com.maddyhome.idea.vim.vimscript.model.commands.WriteAllCommand
w[rite]: com.maddyhome.idea.vim.vimscript.model.commands.WriteCommand
wn[ext]: com.maddyhome.idea.vim.vimscript.model.commands.WriteNextFileCommand
wp[revious]: com.maddyhome.idea.vim.vimscript.model.commands.WritePreviousFileCommand
wN[ext]: com.maddyhome.idea.vim.vimscript.model.commands.WritePreviousFileCommand
wq: com.maddyhome.idea.vim.vimscript.model.commands.WriteQuitCommand
x[it]: com.maddyhome.idea.vim.vimscript.model.commands.WriteQuitCommand
exi[t]: com.maddyhome.idea.vim.vimscript.model.commands.WriteQuitCommand
y[ank]: com.maddyhome.idea.vim.vimscript.model.commands.YankLinesCommand
mapc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapClearCommand
nmapc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapClearCommand
vmapc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapClearCommand
xmapc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapClearCommand
smapc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapClearCommand
omapc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapClearCommand
imapc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapClearCommand
lmapc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapClearCommand
cmapc[lear]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapClearCommand
map: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
nm[ap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
vm[ap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
xm[ap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
smap: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
om[ap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
im[ap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
lm[ap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
cm[ap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
no[map]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
nn[oremap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
vn[oremap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
xn[oremap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
snor[emap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
ono[remap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
no[remap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
ino[remap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
ln[oremap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
cno[remap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.MapCommand
unm[ap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.UnMapCommand
nun[map]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.UnMapCommand
vu[nmap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.UnMapCommand
xu[nmap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.UnMapCommand
sunm[ap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.UnMapCommand
ou[nmap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.UnMapCommand
iu[nmap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.UnMapCommand
lu[nmap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.UnMapCommand
cu[nmap]: com.maddyhome.idea.vim.vimscript.model.commands.mapping.UnMapCommand

View File

@ -1,15 +0,0 @@
# This file was automatically generated by [com.intellij.vim.processor.VimscriptFunctionProcessor].
# If you are going to change it, you are probably doing something wrong, as your changes will be overridden by the next `gradle kspKotlin` run.
abs: com.maddyhome.idea.vim.vimscript.model.functions.handlers.AbsFunctionHandler
empty: com.maddyhome.idea.vim.vimscript.model.functions.handlers.EmptyFunctionHandler
exists: com.maddyhome.idea.vim.vimscript.model.functions.handlers.ExistsFunctionHandler
function: com.maddyhome.idea.vim.vimscript.model.functions.handlers.FunctionFunctionHandler
funcref: com.maddyhome.idea.vim.vimscript.model.functions.handlers.FuncrefFunctionHandler
get: com.maddyhome.idea.vim.vimscript.model.functions.handlers.GetFunctionHandler
join: com.maddyhome.idea.vim.vimscript.model.functions.handlers.JoinFunctionHandler
len: com.maddyhome.idea.vim.vimscript.model.functions.handlers.LenFunctionHandler
sin: com.maddyhome.idea.vim.vimscript.model.functions.handlers.SinFunctionHandler
split: com.maddyhome.idea.vim.vimscript.model.functions.handlers.SplitFunctionHandler
tolower: com.maddyhome.idea.vim.vimscript.model.functions.handlers.TolowerFunctionHandler
toupper: com.maddyhome.idea.vim.vimscript.model.functions.handlers.ToupperFunctionHandler