Skip to content

Commit

Permalink
Stopped "keyword" match from taking \n (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
syko9000 authored Dec 7, 2023
1 parent bec5460 commit 8c6bcef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/Compose.vue
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ export default {
greedy: true
},
"keyword": {
pattern: /^[^ :=]*(?=[:=])/m,
pattern: /^\w*(?=[:=])/m,
greedy: true
},
"value": {
Expand Down

0 comments on commit 8c6bcef

Please sign in to comment.