From e6618ae29224488795841cd979566443644fec74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Rogn=C3=A5s?= Date: Thu, 5 Oct 2023 22:29:07 +0200 Subject: [PATCH] Update snippets.json --- snippets/snippets.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/snippets/snippets.json b/snippets/snippets.json index 2205f58..0572c30 100644 --- a/snippets/snippets.json +++ b/snippets/snippets.json @@ -380,5 +380,29 @@ "prefix": ["format_csv"], "body": ["FORMAT=,1PE15.8$0"], "description": "Format the NONMEM output into a comma separated file\nThe default is s1PE12.5.\nFirst character specifies delimiter (, s for space, or t for tab)\n1PE15.8 means E field notation, 15 total characters allotted to number, 8 digits beyond decimal point, 1 digits before decimal point" + }, + "theta": { + "prefix": ["$THETA"], + "body": [ + "\\$THETA (${1:-Inf}, ${2:0}, ${3:Inf}) ${4:FIX }; TV ${5:Description}", + "$0" + ], + "description": "New THETA record" + }, + "omega": { + "prefix": ["$OMEGA"], + "body": [ + "\\$OMEGA (${1:-Inf}, ${2:0}, ${3:Inf}) ${4:FIX }; IIV ${5:Description}", + "$0" + ], + "description": "New OMEGA record" + }, + "sigma": { + "prefix": ["$SIGMA"], + "body": [ + "\\$SIGMA (${1:-Inf}, ${2:0}, ${3:Inf}) ${4:FIX }; RUV ${5:Description}", + "$0" + ], + "description": "New SIGMA record" } }