change kdb console terminal 80 char limit - Kdb+ / qStudio

Home Forums Kdb+ / qStudio change kdb console terminal 80 char limit

Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #272

    J0hnny
    Guest

    Hi guys,

    Is there any way to change the kdb console 80 char limit?

    Thanks in advance

    #539

    \c or system “c” can be used to obtain the current setting or to configure a new terminal height/width.
    Without arguments it returns the current setting.
    Or with the arguments “\c height width” where height/width are integers, they become the new settings.

    e.g.

    `q)\c
    25 80i
    q)til 200
    0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 ..
    q)\c 25 40
    q)til 200
    0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15..
    q)flip enlist til 30
    0
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    ..
    q)\c 10 40
    q)flip enlist til 30
    0
    1
    2
    3
    4
    5
    6
    ..`

    More information on setting up kdb+ on your machine can be fund here:
    http://www.timestored.com/kdb-guides/developer-environment

Viewing 2 posts - 1 through 2 (of 2 total)

The topic ‘change kdb console terminal 80 char limit’ is closed to new replies.