PageRenderTime 49ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-1-pre5/macros/Misc/Properties/jEdit_Properties.bsh

#
Unknown | 58 lines | 49 code | 9 blank | 0 comment | 0 complexity | 89869bc638e5c29495860d0080c80ee1 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /*
  2. * jEdit_Properties.bsh - a BeanShell macro for the
  3. * jEdit text editor application -- provides a list of current
  4. * properties used by jEdit
  5. * Copyright (C) 2001 John Gellene
  6. * jgellene@nyc.rr.com
  7. * http://community.jedit.org
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with the jEdit application; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. * $Id: jEdit_Properties.bsh 3874 2001-11-06 18:06:07Z jgellene $
  24. *
  25. * Checked for jEdit 4.0 API
  26. *
  27. */
  28. void writeJEditProperties()
  29. {
  30. // save any changes written since the session started
  31. jEdit.saveSettings();
  32. props = jEdit.getProperties();
  33. sw = new StringWriter();
  34. pw = new PrintWriter(sw);
  35. props.list(pw);
  36. newbuf = jEdit.newFile(view);
  37. newbuf.insert(0, sw.toString());
  38. }
  39. writeJEditProperties();
  40. /*
  41. Macro index data (in DocBook format)
  42. <listitem>
  43. <para><filename>jEdit_Properties.bsh</filename></para>
  44. <abstract><para>
  45. Writes an unsorted list of jEdit properties in a new buffer.
  46. </para></abstract>
  47. </listitem>
  48. */
  49. // end jEdit_Properties.bsh