Skip to content

Commit

Permalink
Add completions for centered versions of picRow, picCol, and picStack.
Browse files Browse the repository at this point in the history
  • Loading branch information
litan committed Oct 30, 2019
1 parent 7c40ea2 commit 528eb2a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/net/kogics/kojo/lite/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package net.kogics.kojo.lite
object Versions {
val KojoMajorVersion = "2.7"
val KojoVersion = "2.7.08"
val KojoRevision = "r18"
val KojoBuildDate = "28 October 2019"
val KojoRevision = "r19"
val KojoBuildDate = "30 October 2019"
val JavaVersion = {
val jrv = System.getProperty("java.runtime.version")
val arch = System.getProperty("os.arch")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,14 @@ object CodeCompletionUtils {
"stInsertCodeBlock" -> "stInsertCodeBlock(${code})",
"stOnStoryStop" -> "stOnStoryStop {\n ${cursor}\n}",
"HPics" -> "HPics(\n p,\n p\n)",
"picRow" -> "picRow(\n p,\n p\n)",
"picRow" -> "picRow(${p1}, ${p2})",
"picRowCentered" -> "picRowCentered(${p1}, ${p2})",
"VPics" -> "VPics(\n p,\n p\n)",
"picCol" -> "picCol(\n p,\n p\n)",
"picCol" -> "picCol(${p1}, ${p2})",
"picColCentered" -> "picColCentered(${p1}, ${p2})",
"GPics" -> "GPics(\n p,\n p\n)",
"picStack" -> "picStack(\n p,\n p\n)",
"picStack" -> "picStack(${p1}, ${p2})",
"picStackCentered" -> "picStackCentered(${p1}, ${p2})",
"picBatch" -> "picBatch(\n p,\n p\n)",
// Todo - is there any commonality here with the staging templates
"trans" -> "trans(${x}, ${y})",
Expand Down

0 comments on commit 528eb2a

Please sign in to comment.