I broke up with neovim....vim is my best friend now

This commit is contained in:
LinlyBoi
2023-04-30 08:14:07 +03:00
parent 0d185449c5
commit 4a4a6b1e81
5245 changed files with 468325 additions and 25 deletions

View File

@@ -0,0 +1,26 @@
{
"ep0": {
"prefix": "ep0",
"body": [
"exit program returning ${1:0}"
],
"description": "exit program returning [0]",
"scope": "cobol,acucobol"
},
"sr0": {
"prefix": "sr0",
"body": [
"stop run returning ${1:0}"
],
"description": "stop run returing [0]",
"scope": "cobol,acucobol"
},
"gr0": {
"prefix": "gr0",
"body": [
"goback returning ${1:0}"
],
"description": "goback returning [0]",
"scope": "cobol,acucobol"
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,49 @@
{
"dialect": {
"prefix": "dialect",
"body": [
"dialect\"${2|ans85,bs2000,bs2000-offload,cob370,cob371,cob372,entcobol,mf,mvs,os390,osvs,vsc21,vsc22,vsc23,vsc24|}\"",
"$0"
]
},
"sourceformat": {
"prefix": "sourceformat",
"body": [
"sourceformat\"${2|free,variable,fixed|}\"",
"$0"
]
},
"jvmgen": {
"prefix": "jvmgen",
"body": [
"jvmgen\"${2|sub|}\"",
"$0"
]
},
"ilgen": {
"prefix": "ilgen",
"body": [
"ilgen\"${2|sub|}\"",
"$0"
]
},
"copypath": {
"prefix": "copypath",
"body": [
"copypath\"\\$COBCPY;$1\"",
"$0"
]
},
"speed - native" : {
"prefix" : "speed",
"body" : [
"nocheck",
"fastcall",
"fastinit",
"nolinkcheck",
"lnkalign",
"noparamcountcheck",
"$0"
]
}
}

View File

@@ -0,0 +1,73 @@
{
"Job/ADDRSPC": {
"scope": "JCL",
"prefix": "ADDRSPC",
"body": [
"ADDRSPC=${2|VIRT,REAL|}${3|\\,|}"
],
"description": "ADDRSPC Parameter"
},
"JOB/BYTES": {
"scope": "JCL",
"prefix": "BYTES",
"body": [
"BYTES=${2:500},${3|CANCEL,DUMP,WARNING|}${4|\\,|}"
],
"description": "BYTES Parameter"
},
"Job/CARDS": {
"scope": "JCL",
"prefix": "CARDS",
"body": [
"CARDS=${2:500},${3|CANCEL,DUMP,WARNING|}${4|\\,|}"
],
"description": "CARDS Parameter"
},
"Job/COND": {
"scope": "JCL",
"prefix": "COND",
"body": [
"COND=(${2:0},${3|GT,GE,EQ,LT,LE,NE|},${4:STEPNAME})${5|\\,|}"
],
"description": "COND Parameter"
},
"Job/DISP": {
"scope": "JCL",
"prefix": "DISP",
"body": [
"DISP=${2|NEW,CATLG,DELETE|}"
],
"description" : "DISP Parameter, NEW = New data set, CATLG = Create a new catalog entry, DELETE = delete data set on abnormal termination"
},
"Job/LRECL": {
"scope": "JCL",
"prefix": "LRECL",
"body": [
"LRECL=${2|80,132|}"
],
"description" : "LRECL Parameter"
},
"Job/IEFBR14": {
"scope": "JCL",
"prefix": "IEFBR14",
"body": [
"//${2:STEPID01} EXEC PGM=IEFBR14",
"$0"
],
"description" : "IEFBR14 Data set utility"
},
"Job/IEBGENER ": {
"scope": "JCL",
"prefix": "IEBGENER ",
"body": [
"//${2:STEPID01} EXEC PGM=IEBGENER ",
"//SYSUT1 DD *",
"${3}",
"/*",
"//SYSUT2 DD DISP=NEW,DSN=${4:A.B.C)",
"//SYSPRINT DD SYSOUT=*",
"$0"
],
"description" : "IEBGENER create/load a dataset"
}
}