Skip to content

Tags: ljos/sparql-mode

Tags

v4.0.2

Toggle v4.0.2's commit message
See #48: Ugly fix for bug in emacs url-http package

Since we are supporting 24.3 now we need to fix that the url-http
package doesn't read the mime-format correctly.

v4.0.1

Toggle v4.0.1's commit message
Add support for emacs 24.3, don't auto add to ac-source

emacs 24 doesn't have with-eval-after-load.

At the same time, take the advice from an earlier issue. Don't
autoload into user-controlled variables.

v4.0.0

Toggle v4.0.0's commit message
Remove support for older emacs versions

v3.0.1

Toggle v3.0.1's commit message
Fix comment and URL syntax highlighting when re-fontifying

sparql-mode.el (sparql-keywords): Stop overriding other faces(, like
the comment face). Add C-j as end-of-comment.

sparql-mode.el (sparql-syntax-propertize-function): Make
syntax-propertize-function skip URLs, but if we see a # we add it as a
beginning of comment.

These changes fixes a bug where the fontification of comments didn't
work properly. If you entered a URL with a #, but didn't close the <>,
the line would be given the comment face until you moved to the end of
the line and force a face update by adding a space or similar. We used
to rely on the fontification to detect if we should add the syntax
property, but it is easier to just ignore the parts that shouldn't be
fontified with comment all together instead.

v3.0.0

Toggle v3.0.0's commit message
Merge github.com:ljos/sparql-mode

v2.1.1

Toggle v2.1.1's commit message
Make sparql-indent-offset affect indent of blank nodes

v2.1.0

Toggle v2.1.0's commit message
Merge branch 'master' of github.com:ljos/sparql-mode

v2.0.1

Toggle v2.0.1's commit message
Remove require of async, not needed anymore

Fixes #56

v2.0.0

Toggle v2.0.0's commit message
Remove async-package dependency

The async package is more difficult to debug and we don't need it
anymore if we just upgrade the emacs version dependency.

Fixes #48.

v1.1.3

Toggle v1.1.3's commit message
Fix mishandling unsucessful request

`results' is a buffer and not a string, need to use
`insert-buffer-substring' to insert the text in the buffer.

Fixes #55