Skip to content

Commit

Permalink
fix to make worksheet to display results inline (#104)
Browse files Browse the repository at this point in the history
Co-authored-by: Prasanna Kumar <[email protected]>
  • Loading branch information
prassee and Prasanna Kumar authored Dec 25, 2022
1 parent 1609d94 commit 36e32d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/decorations.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def decoration_to_phantom(option: Dict[str, Any], view: sublime.View) -> Optiona
hoverMessage = deep_get(option, 'hoverMessage')
contentText = deep_get(option, 'renderOptions', 'after', 'contentText')
link = ''
point = view.text_point(option['start'].row, option['start'].col)
point = view.text_point(option['range']['start']['line'], option['range']['start']['character'])
if hoverMessage:
link = " <a href='more'>more</a>"

Expand Down

0 comments on commit 36e32d0

Please sign in to comment.