Compare commits

...

1 commit

Author SHA1 Message Date
Yaotian-Liu
3e5c712005
new release 1.1.2 2023-03-19 13:27:11 +08:00
2 changed files with 2 additions and 6 deletions

View file

@ -8,6 +8,7 @@ on:
jobs:
create_release:
if: "contains(github.event.head_commit.message, 'new release')"
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
@ -27,7 +28,7 @@ jobs:
- name: Get Release Version
id: release-version
run: |
echo "VER=${{ github.event.head_commit.message }} | cut -d' ' -f3" >> $GITHUB_OUTPUT
echo "VER=$(echo ${{ github.event.head_commit.message }} | cut -d' ' -f3)" >> $GITHUB_OUTPUT
- name: Create Release
id: create_release

View file

@ -203,11 +203,6 @@ class PseudocodeSuggestor extends EditorSuggest<string> {
if (!isPseudocode) return null;
// Get last word in current line
// const currentLineToCursor = editor
// .getLine(cursor.line)
// .slice(0, cursor.ch);
return {
start: { line: cursor.line, ch: currentLineLastWordStart },
end: cursor,