Skip to content

Instantly share code, notes, and snippets.

@pt2121
Last active October 11, 2019 17:40
Show Gist options
  • Save pt2121/c3704ac0800f30ae803034dd71b0a095 to your computer and use it in GitHub Desktop.
Save pt2121/c3704ac0800f30ae803034dd71b0a095 to your computer and use it in GitHub Desktop.

find.patch Test

---
title: test.u
---
hey = "yello"

I found and typechecked these definitions in test.u. If you do
an `add` or `update`, here's how your codebase would change:

  ⍟ These new definitions are ok to `add`:
  
    hey : builtin.Text
 
Now evaluating any watch expressions (lines starting with
`>`)... Ctrl+C cancels.
.> add
⍟ I've added these definitions:

  hey : builtin.Text

Update

---
title: test.u
---
hey = "hello"

I found and typechecked these definitions in test.u. If you do
an `add` or `update`, here's how your codebase would change:

  ⍟ These new definitions will replace existing ones of the same
    name and are ok to `update`:
  
    hey : builtin.Text
 
Now evaluating any watch expressions (lines starting with
`>`)... Ctrl+C cancels.

Update

.> update
⍟ I've updated to these definitions:

  hey : builtin.Text✅

No conflicts or edits in progress.
.> find.patch
1. patch
.> view.patch patch
Edited Terms: hey#8e79ctircj -> hey
.> view.patch 1
  InvalidWordyId "1"


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment