Opening several files at once.

English main discussion
Post Reply
  • Author
  • Message
Offline
Posts: 282
Joined: Thu Sep 10, 2015 9:53 am
Location: Deutschland

Opening several files at once.

Post by sexy96 »

How to enter D:\Notepad++\Aspell\en.pws and D:\Notepad++\Aspell\pl.pws together?
Image

it does not work:
D:\Notepad++\Aspell\en.pws D:\Notepad++\Aspell\pl.pws
D:\Notepad++\Aspell\en.pws, D:\Notepad++\Aspell\pl.pws
D:\Notepad++\Aspell\en.pws; D:\Notepad++\Aspell\pl.pws

something like this pops up:
Image

Offline
Posts: 874
Joined: Sat Jan 16, 2010 2:03 pm

Post by opk44 »

sexy96
I'm not sure it can be done this way, but there are at least two other

1. Command line (see ..\AkelFiles\Docs\AkelHelp-Eng.htm)

Code: Select all

AkelPad.exe [parameters] "file1.ext" [parameters] "file2.ext" [parameters] ... 
2. Script "EvalCmd.js" (see ..\AkelFiles\Plugs\Scripts\EvalCmd.js) with Toolbar or ContextMenu plugins

Code: Select all

"Open 2 files" Call("Scripts::Main", 1, "EvalCmd.js", `0x1; AkelPad.OpenFile("D:\Notepad++\Aspell\en.pws"); AkelPad.OpenFile("D:\Notepad++\Aspell\pl.pws");`) Icon("")

Offline
Posts: 282
Joined: Thu Sep 10, 2015 9:53 am
Location: Deutschland

Post by sexy96 »

I wanted to write it in Favorites -> Editing

AkelPad.exe [parameters] "D:\Notepad++\Aspell\pl.pws" [parameters] "D:\Notepad++\Aspell\en.pws" [parameters]

Only ... what parameters are there to be there, if they must be?

It does not work:
AkelPad.exe "D:\Notepad++\Aspell\pl.pws" "D:\Notepad++\Aspell\en.pws"

Offline
Posts: 874
Joined: Sat Jan 16, 2010 2:03 pm

Post by opk44 »

sexy96 wrote:I wanted to write it in Favorites -> Editing...
I think that it doesn't work in "Favourites" because one item == one file
Post Reply