Changing font size in built-in editor
[1/5] from: dukeofperl:ml1 at: 5-Nov-2010 15:55
How do I change the font size in the built-in editor? It also needs
anti-aliasing. Is there a system-wide config file?
--
Duke
[2/5] from: henrikmk::gmail at: 9-Nov-2010 15:09
On Fri, Nov 5, 2010 at 10:55 PM, Duke Normandin <dukeofperl-ml1.net> wrote:
> How do I change the font size in the built-in editor? It also needs
> anti-aliasing. Is there a system-wide config file?
The built-in editor is created in VID, which is a very sparse UI
toolkit. While easy to use at first, you might run into limitations
quickly.
Anti-aliasing is not possible, due to the View architecture in REBOL 2.
Font-size can be clumsily changed by:
1. type: editor ""
2. quit the editor
3. ctx-edit/t1/font/size: 16
4. type editor ""
You probably want to use a different editor. :-)
--
Regards,
Henrik Mikael Kristensen
[3/5] from: dukeofperl:ml1 at: 9-Nov-2010 8:43
On Tue, 9 Nov 2010, Henrik Mikael Kristensen wrote:
> On Fri, Nov 5, 2010 at 10:55 PM, Duke Normandin <dukeofperl-ml1.net> wrote:
> >
<<quoted lines omitted: 10>>
> 4. type editor ""
> You probably want to use a different editor. :-)
Thanks for the work-around! I "live" mostly in emacs, so I'm not
homeless ;) In "View" the built-in editor was simply handy. What would
be cool, is if a person could use an external editor within "View".
--
Duke
[4/5] from: santilli:gabriele:gm:ail at: 9-Nov-2010 17:50
On Tue, Nov 9, 2010 at 4:43 PM, Duke Normandin <dukeofperl-ml1.net> wrote:
> Thanks for the work-around! I "live" mostly in emacs, so I'm not
> homeless ;) In "View" the built-in editor was simply handy. What would
> be cool, is if a person could use an external editor within "View".
external-editor: func [file [file!]] [
call reduce ["gvim" file]
]
:-P
[5/5] from: dukeofperl:ml1 at: 9-Nov-2010 13:16
On Tue, 9 Nov 2010, Gabriele Santilli wrote:
> On Tue, Nov 9, 2010 at 4:43 PM, Duke Normandin <dukeofperl-ml1.net> wrote:
> > Thanks for the work-around! I "live" mostly in emacs, so I'm not
<<quoted lines omitted: 4>>
> ]
> :-P
:0
--
Duke
Notes
- Quoted lines have been omitted from some messages.
View the message alone to see the lines that have been omitted