Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions crates/codebook/src/dictionaries/combined.gen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ arw
as
asap
asc
asctime
asf
aside
aslist
Expand Down Expand Up @@ -170,6 +171,7 @@ author
authors
auto
autofield
autoplay
autorest
autowired
available
Expand Down Expand Up @@ -984,6 +986,7 @@ foreignkey
form
format
formatter
formatters
forms
forward
found
Expand Down Expand Up @@ -1391,6 +1394,7 @@ kw
kwargs
kyiv
label
labelledby
labels
lambda
lang
Expand All @@ -1413,6 +1417,7 @@ less
let
letter
level
levelname
lg
lhs
li
Expand Down Expand Up @@ -1718,6 +1723,7 @@ nomethod
non
none
noop
noqa
noreferrer
normal
noscript
Expand Down Expand Up @@ -1773,6 +1779,7 @@ old
omitempty
on
once
onchange
onclick
oncreate
one
Expand Down Expand Up @@ -1942,6 +1949,7 @@ plain
platform
play
player
playsinline
plist
pln
plt
Expand Down Expand Up @@ -2325,6 +2333,7 @@ sgml
sh
sha
shadow
shadowrootmode
shape
shar
share
Expand Down
2 changes: 1 addition & 1 deletion crates/codebook/src/queries/python.scm
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
(class_definition
name: (identifier) @identifier)
(assignment
(identifier) @identifier)
left: (identifier) @identifier)
5 changes: 5 additions & 0 deletions examples/example.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Impurt statements with misspellings
import copy as ccopy
import pathlib

hi = pathlib
my_copy = ccopy

# Globul constants
MAXSIZ = 100
Expand Down