unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: TongKe Xue <tkxue@tkxue.org>
To: help-gnu-emacs@gnu.org
Subject: emacs + lispy + outline + elipsis NOT showing
Date: Wed, 3 Jan 2018 23:06:55 -0700	[thread overview]
Message-ID: <CAKmvt6+KegK5b7qfAOkXoZ34VhLq66Cs-CsR+fZyy3NxMutrvA@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 1776 bytes --]

my lispy + outline config looks something like this:

== begin snip ==
(progn ;; * outline mode
  (setq my-outline-regexp
(concat "^(\\|\\(^\\s-*(" (regexp-opt '("progn " "def" "do ")) ".*\\)"))

  ;; (setq outline-level 'my-outline-level)
  ;; (setq outline-regexp my-outline-regexp)

  (defun my-get-level (s) (length (car (split-string s "("))))

  (defun my-outline-level ()
    (save-excursion
      (save-match-data
(end-of-line)
(if (re-search-backward my-outline-regexp nil t)
    (+ 1 (my-get-level (match-string 0) ))
  0))))
  (add-hook 'lispy-mode-hook
    (lambda ()
      (setq-local outline-regexp my-outline-regexp)
      (setq-local outline-level 'my-outline-level)))
  )

== end snip ==

Now, when I ortg-cycle on the top level progn (see attached), the three
images we get are:

all closed
partial open
all open

but notice: there is no ellipsis of "..." anywhere when the folds are
"collapsed"


Question: how do I debug this / how do I turn on "show ... when collapsed" ?


==== pre-emptikve answers:

1. What is org-ellipsis ? have you tried setting it?

It is 'nil' which according to docs, defaults ot "..." ; I have tried setq
and setq-local on it, nothing happens.


==== bounty / screen sharing help

In case this is difficult to resolve over email and requires interaction /
real time discussion:

On two different freelancing sites, I have posted a $50 bounty for help
resolving this.

If anyone is willing to jump on video chat / screen sharing to help me
debug this, I would be happy to pay $50 (via paypal) for a solution.

This is payment for result, not for time -- so if you try to help me, but
we can't resolve the issue, there will be no payment.


Thanks,
--TongKe



[image: Inline image 6][image: Inline image 5][image: Inline image 4]

[-- Attachment #2: partial open.png --]
[-- Type: image/png, Size: 110253 bytes --]

[-- Attachment #3: all collapsed.png --]
[-- Type: image/png, Size: 80850 bytes --]

[-- Attachment #4: all open.png --]
[-- Type: image/png, Size: 139765 bytes --]

             reply	other threads:[~2018-01-04  6:06 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-04  6:06 TongKe Xue [this message]
2018-01-04  8:56 ` emacs + lispy + outline + elipsis NOT showing TongKe Xue

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAKmvt6+KegK5b7qfAOkXoZ34VhLq66Cs-CsR+fZyy3NxMutrvA@mail.gmail.com \
    --to=tkxue@tkxue.org \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).