Skip to content

Commit

Permalink
added v24.10
Browse files Browse the repository at this point in the history
  • Loading branch information
antonvw committed Aug 11, 2024
1 parent 8fcb96c commit ea3ab8e
Show file tree
Hide file tree
Showing 12 changed files with 1,921 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<li><a href="v18.04.0/syncped.htm">v18.04.0</a></li>
<li><a href="v18.10.0/syncped.htm">v18.10.0</a></li>
<li><a href="v19.04.0/syncped.htm">v19.04.0</a></li>
<li><a href="v19.10.0/syncped.htm">v19.10.0</a></li>
<li><a href="v20.04.0/syncped.htm">v20.04.0</a></li>
<li><a href="v20.10.0/syncped.htm">v20.10.0</a></li>
<li><a href="v21.04/syncped.htm">v21.04</a></li>
Expand All @@ -27,6 +28,7 @@
<li><a href="v23.4/syncped.htm">v23.4</a></li>
<li><a href="v23.10/syncped.htm">v23.10</a></li>
<li><a href="v24.4/syncped.htm">v24.4</a></li>
<li><a href="v24.10/syncped.htm">v24.10</a></li>
</ul>
</div>

Expand Down
71 changes: 71 additions & 0 deletions v24.10/bars.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="syncped.css" />
<title>Bars</title>
</head>

<body>
<center>
<a id="bars">
<b>Bars</b>
</a>
</center>

<div id="main">
The bars can be toggled using the main menu.

<ul>
<li> Title bar. This bar can be toggled using Ctrl T.
</li>

<li> Menubar. This bar can be toggled using Ctrl I.
</li>

<li> Toolbar.
</li>

<li> Statusbar
<p>
The statusbar can be (left) clicked or right clicked on
most of the panes:
<ul>
<li> Click on the text pane to edit panes.
Right click this pane to edit the config file.
</li>

<li> Click on the file type pane to change the current
file type, or to view a file in hex format.
</li>

<li> Click on the lines pane to goto a line.
Right click this pane to show / hide line numbers.
</li>

<li> Click on the lexer pane to change the lexer for this file.
Right click this pane to change the syntax colouring for this lexer.
All <a HREF="http://www.scintilla.org">scintilla</a> lexers are supported.
Editing this file and saving it directly shows
colouring style changes on all open editors.
</li>

<li> Click on the theme pane to change a theme.
Right click this pane to add new themes,
or change existing ones.
</li>

<li> Click on the VCS pane to run VCS commands.
Right click this pane to add VCS commands (or to add debug commands).
</li>

<li> Click on the macro pane to playback a macro.
Right click this pane to edit macros (vi mode should be set).
</li>
</ul>

</p>
</li>
</ul>

</div>
</body>
</html>
51 changes: 51 additions & 0 deletions v24.10/ctags.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="syncped.css" />
<title>ctags</title>
</head>

<body>
<center>
<a id="ctags">
</center>

<div id="main">
<p>
A ctags file <code>tags</code> is read if present in startup
or config directory, and allows you to jump
to tags in source file using vi keys, and to
autocomplete words in object orriented programming
languages.
</p>

<p>
E.g.:
</p>

<p>
<code>
ctags --languages=c,c++ --fields=+aiks -f ~/.config/wex/tags -R /home/USER/wex
</code>
</p>

<p>
creates a ctags file and puts it as tags in your config directory,
using absolute paths.
</p>

<p>
When the cursor is on a word, pressing <code>Q</code>
(or <code>ctrl-]</code>) jumps to the
occurrence of that word, and pressing <code>S</code> jumps back.
If there are more matches a dialog with all of them is shown,
and you can select which file to open. Pressing <code>ctrl-]</code> then
jumps to next tag, and pressing <code>ctrl-[</code> jumps to previous tag.
</p>

<p>
You can also use more ctags files by specifying the ctags file to
be used as commandline parameter option <code>-u</code>.
</p>
</div>
</body>
</html>
48 changes: 48 additions & 0 deletions v24.10/debug.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="syncped.css" />
<title>debug</title>
</head>

<body>
<center>
<a id="debug">
</center>

<div id="main">
<p>
Support for debugging is configured by the wex-menus.xml file.
At this moment there is support for gdb.
</p>

<p>
Debugging is available if option -d is added when starting up.
Markers for breakpoints and current line of execution
are shown in the source code.
</p>

<p>
e.g. the next gdb commands are supported:
</p>

<p>
<table border="1" valign="top">
<tr bgcolor="#9acd32">
<th align="left">svn command</th>
<th align="left">action</th>
</tr>
<tr><td>break</td><td>invokes svn add</td></tr>
<tr><td>file </td><td>shows svn diff</td></tr>
<tr><td>next </td><td>asks for revision and shows revision in editor window</td></tr>
<tr><td>run </td><td>asks for revision and shows revision with blame info in editor window</td></tr>
<tr><td>until</td><td>asks for commit text and commits</td></tr>
</table>
</p>

<p>
The debug submenu is shown when right clicking on an editor window.
</p>

</div>
</body>
</html>
54 changes: 54 additions & 0 deletions v24.10/editortab.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="syncped.css" />
<title>Editor Tab</title>
</head>

<body>

<center>
<a id="editortab"><b>Editor Tab</b></a>
</center>

<p>
<div id="main">
<ul>
<li> Synchronizes if the file is changed from outside. Can be used for
viewing log files: If you're on the last position in a log file
and the log file is synchronized, then only new data is added to the
file, and your position is restored to the end of file.
This also works in hex mode.
</li>
<li> Fast searching by selecting text and pressing F3 or F4.
</li>
<li> If you select several lines, you can sort the selection using
any sort position in the selection. The default sort position
is the cursor position at the last line of the selection.
</li>
<li> You can set rectangular selection by pressing ALT before selecting.
Or use K key in vi mode.
</li>
<li> When the mouse is on a hex number the decimal number is
shown as a tooltip by pressing Ctrl D.
</li>
<li> Links are navigated using the popup menu on a Link.
</li>
<li> Zoom in and out using Ctrl - and Ctrl = keys.
</li>
<li> Find marked text using Ctrl 9 and Ctrl 0 keys.
</li>
<li> Click on the first line to show current properties.
</li>
<li> If the Hex checkbox on the optionsbar is set, then files are directly
opened in hex mode.
</li>
<li> The tab can be split by selecting
Split from the context menu on the tab, as many times as you want.
This causes the tab, and the splitted tab to be unsynced.
To resync, you should uncheck and check the Sync checkbox.
</li>
</ul>
</div>
</p>
</body>
</html>
45 changes: 45 additions & 0 deletions v24.10/listtab.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="syncped.css" />
<title>List Tab</title>
</head>

<body>
<center>
<a id="listtab">
<b>List Tab</b></a>
</center>

<div id="main">
<p>

<ul>
<li> Synchronizes if a list item is changed from outside.
</li>
<li> 'Find In ...' is available that allows you
to find text in all files in your project. If items are selected in
the project, then searching is limited to these files.
</li>
<li> The list can be sorted on each of its columns by
clicking on the column header.
You also have an Automatic Sort option for the project. If set, then
your project is automatically sorted ascending or descending
(depending on your SortMethod) and resorted whenever
one of the files in the project is synchronized.
</li>
<li> An item on the list can be opened by double clicking.
</li>
<li> List items can be copied to the clipboard as
ascii text with columns separated by tabs, and then pasted on other lists,
or into an edit window.
</li>
</ul>
</p>

<p>
The project files are stored as XML files containing the full paths of all items.
Edit it using 'File Open As Text' in order to replace or change items.
</p>
</div>
</body>
</html>
Binary file added v24.10/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
71 changes: 71 additions & 0 deletions v24.10/syncped.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/* divtable (dt) classes
see https://divtable.com/converter/ */

.dt
{
color: #404040;
background-color: #fafafa;
display: table;
width: 100%;
}

.dt-body
{
display: table-row-group;
}

.dt-cell,
.dt-head
{
/* border: 1px solid #999999; */
border: #6699CC double;
display: table-cell;
padding: 3px 5px;
font-size: 11px;
}

.dt-head
{
background-color: #9acd32;
font-weight: bold;
}

.dt-row
{
display: table-row;
}

span.nobr
{
white-space: nowrap;
}

/* other elements */

body
{
background-color: #EEF0F0;
}

table
{
/* font-family: Verdana */
font-weight: normal;
font-size: 11px;
color: #404040;
background-color: #fafafa;
border: 1px #6699CC solid;
vertical-align: top;
}

td
{
vertical-align: top;
}

#main
{
position: absolute;
left: 5%;
right: 5%;
}
Loading

0 comments on commit ea3ab8e

Please sign in to comment.