Re: [O] clock-in task is not highlighted in agenda view

2012-12-12 Thread Liang Wang
Hi Bastien,


On Wed, Dec 12, 2012 at 7:04 AM, Bastien b...@altern.org wrote:

 Hi Liang,

 Liang Wang netcas...@gmail.com writes:

  When I press 'I' to clock-in task in agenda view, the line of that
  task is not highlighted any more.

 Just to confirm this has been fixed.

Glad to hear that.  Thank you.


 Thanks,

 --
  Bastien



[O] clock-in task is not highlighted in agenda view

2012-10-10 Thread Liang Wang
Hi,

When I press 'I' to clock-in task in agenda view, the line of that
task is not highlighted any more.  After git bisect, I find that this
problem occurs since commit d43f7eb org-agenda.el: Make sure to get a
property from (1- (point-max)), not (point-max)).

After I refresh the agenda view, the line is highlighted.

Thanks,
Liang




Re: [O] a line in BEGIN_SRC/END_SRC block disappeared when publishing

2012-06-01 Thread Liang Wang
Hi Bastien,

On Fri, Jun 1, 2012 at 9:01 PM, Bastien b...@gnu.org wrote:
 Hi Liang,

 Liang Wang netcas...@gmail.com writes:

 #+BEGIN_SRC emacs-lisp
   (eval-after-load 'yasnippet
     '(yas/define-snippets
      'org-mode
      '((elisp #+BEGIN_SRC emacs-lisp
     $0
   ,#+END_SRC #+BEGIN_SRC emacs-lisp ... #+END_SRC
 #+END_SRC

 Why not this

 #+BEGIN_SRC emacs-lisp
  (eval-after-load 'yasnippet
    '(yas/define-snippets
     'org-mode
     '((elisp #+BEGIN_SRC emacs-lisp
    $0\n#+END_SRC #+BEGIN_SRC emacs-lisp ... #+END_SRC
 #+END_SRC


Thanks.  This one works.

Liang.



[O] a line in BEGIN_SRC/END_SRC block disappeared when publishing

2012-05-30 Thread Liang Wang
Hi,

When I publish an article with code block as following, the last line
disappeared.  From manual, the comma before # is the way to quote #.
But it seems that it doesn't work.  Is it a bug?  I use 7.8.11 release
tarball.

#+BEGIN_SRC emacs-lisp
  (eval-after-load 'yasnippet
'(yas/define-snippets
 'org-mode
 '((elisp #+BEGIN_SRC emacs-lisp
$0
  ,#+END_SRC #+BEGIN_SRC emacs-lisp ... #+END_SRC
#+END_SRC

Thanks,
Liang.




[Orgmode] start-day is lost in clock report mode and log mode of custom agenda view

2010-11-07 Thread Liang Wang

Hi,

I have a custom agenda view like this,

(g Calendar
 ((agenda  ((org-agenda-ndays 1)
  (org-deadline-warning-days 7)

When I press R to show clock report or l to show log mode, it always
goes to today.  So I get information about today but this is not what
I want.  It seems that start-day information is lost for this custom
agenda view.

The default C-c a a does not have this issue.

Thanks,
Liang.



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: start-day is lost in clock report mode and log mode of custom agenda view

2010-11-07 Thread Liang Wang
Liang Wang netcasper at gmail.com writes:

 
 
 Hi,
 
 I have a custom agenda view like this,
 
 (g Calendar
  ((agenda  ((org-agenda-ndays 1)
   (org-deadline-warning-days 7)
 
 When I press R to show clock report or l to show log mode, it always
 goes to today.  So I get information about today but this is not what
 I want.  It seems that start-day information is lost for this custom
 agenda view.


Let me make it clear.

For example, I'm look at 2010-11-01 in this custom agenda view.  
I want to look at clock report so I press R.  But this custom 
agenda view goes to today.  For me, it's 2010-11-08.  I have to 
go back manually to 2010-11-01 to see clock report.



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] clock report shows link literally?

2010-11-05 Thread Liang Wang
Hi,

After I upgrade orgmode to latest version, clock report shows link
text literally.

For example,

   [[file:/home/liang/gtd/todo.org::Task...

Unfortunately, in this way, I can not see what this task actually is.
I have to temporarily disable link in clock report.

Is this desired behavior or a bug?

Thanks,
Liang.



___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Tiny font in org-agenda-columns when using emacs --daemon

2010-07-15 Thread Liang Wang
Jakob Lombacher Jakob at lombacher.net writes:

 
 Hi,
 
 When I start emacs as daemon emacs --daemon  and than attache a
 client to it, the org-agenda-columns view appears in a very tiny font.
 If I start emacs normally the view appears in standard font size.
 
 I found out that the Org Column face is set to different values
 (Height: 1, ...). I can adapt it and it works, but when I start the
 emacsclient again, all settings are lost.
 So it looks like the emacsclient overwrites those settings.
 
 Has anybody an idea what's the cause of that? Can anybody report the
 same behavior?
 

It's been annoying me for a long time.  Here is my quick fix.

(defun wl-org-column-view-uses-fixed-width-face ()
  ;; copy from org-faces.el
  (when (fboundp 'set-face-attribute)
;; Make sure that a fixed-width face is used when we have a column table.
(set-face-attribute 'org-column nil
:height (face-attribute 'default :height)
:family (face-attribute 'default :family

(when (and (fboundp 'daemonp) (daemonp))
  (add-hook 'org-mode-hook 'wl-org-column-view-uses-fixed-width-face))


 I use emacs 23.1-r3 on a gentoo linux system and org-mode 6.36c.
 
 Jakob
 
 ___
 Emacs-orgmode mailing list
 Please use `Reply All' to send replies to the list.
 Emacs-orgmode at gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode
 
 





___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode