Skip to content

Commit

Permalink
Updated scope tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
bornova authored Sep 20, 2024
1 parent c43131c commit 45500ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/js/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ CodeMirror.defineMode('plain', () => ({
export const numaraHints = []

export const scopeList = [
{ text: '_', desc: 'Answer from last calculated line.' },
{ text: 'ans', desc: 'Answer from last calculated line.' },
{ text: '_', desc: 'Answer from last calculated line' },
{ text: 'ans', desc: 'Answer from last calculated line' },
{ text: 'avg', desc: 'Average of previous line values. Numbers only.' },
{ text: 'now', desc: 'Current date and time.' },
{ text: 'now', desc: 'Current date and time' },
{ text: 'subtotal', desc: 'Total of all lines in previous block. Numbers only.' },
{ text: 'today', desc: 'Current date.' },
{ text: 'today', desc: 'Current date' },
{ text: 'total', desc: 'Total of previous line values. Numbers only.' }
]

Expand Down

0 comments on commit 45500ea

Please sign in to comment.