Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Slime
Commits
2b3869b4
Commit
2b3869b4
authored
10 years ago
by
João Távora
Browse files
Options
Download
Email Patches
Plain Diff
Unbreak more tests
* sly.el (sly-simple-completions): Ressurected.
parent
27de7bc9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sly.el
+7
-4
sly.el
with
7 additions
and
4 deletions
+7
-4
sly.el
+
7
-
4
View file @
2b3869b4
...
...
@@ -3347,14 +3347,17 @@ Perform completion more similar to Emacs' complete-symbol."
(
beg
(
sly-symbol-start-pos
))
(
prefix
(
and
beg
(
buffer-substring-no-properties
beg
end
)))
(
sly-current-thread
t
)
(
result
(
and
prefix
(
sly-eval
`
(
swank:simple-completions
,
prefix
',
(
sly-current-package
))))))
(
sly-simple-completions
prefix
))))
(
when
result
(
list
beg
end
(
car
result
)))))
(
defun
sly-simple-completions
(
prefix
)
(
let
((
sly-current-thread
t
))
(
sly-eval
`
(
swank:simple-completions
,
prefix
',
(
sly-current-package
)))))
(
defun
sly-show-arglist
()
(
let
((
op
(
ignore-errors
(
save-excursion
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help