Lsp-mode: Add Wiki

Created on 25 Dec 2017  路  5Comments  路  Source: emacs-lsp/lsp-mode

And make it publicly editable
https://help.github.com/articles/changing-access-permissions-for-wikis/

Off-topic

xref-find-apropos in xref.el is not appealing because it splits the input pattern and quotes it. This may be appropriate for its elisp backend but bad for general language servers.

(defun xref-find-apropos (pattern)
  "Find all meaningful symbols that match PATTERN.
The argument has the same meaning as in `apropos'."
  (interactive (list (read-string
                      "Search for pattern (word list or regexp): "
                      nil 'xref--read-pattern-history)))
  (require 'apropos)
  (xref--find-xrefs pattern 'apropos
                    (apropos-parse-pattern
                     (if (string-equal (regexp-quote pattern) pattern)
                         ;; Split into words
                         (or (split-string pattern "[ \t]+" t)
                             (user-error "No word list given"))
                       pattern))
                    nil))

Most helpful comment

Wiki can be publicly editable so it is easier to collaborate.

All 5 comments

What about using github pages instead of a wiki?

Wiki can be publicly editable so it is easier to collaborate.

Not even members can edit the wiki. I don't understand why this still doesn't happen.

@vibhavp - can you open the wiki for public edits so we can close this issue?

Wiki opened for edits.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

glepnir picture glepnir  路  4Comments

xendk picture xendk  路  3Comments

alanz picture alanz  路  6Comments

sid-kap picture sid-kap  路  5Comments

yyoncho picture yyoncho  路  5Comments