Skip to content

Request: "Compressed"  #5218

Open
Open
@Lokathor

Description

@Lokathor

Just how fn_args_layout works for function declarations, but make it work for function calls as well.

eg:

use super::*;

pub fn create_window_ex_w() {
  CreateWindowExW(dwExStyle, lpClassName, lpWindowName, dwStyle, X, Y, nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)
}

should become (depending on line with and such) something like this:

use super::*;

pub fn create_window_ex_w() {
  CreateWindowExW(dwExStyle, lpClassName, lpWindowName,
    dwStyle, X, Y, nWidth, nHeight, hWndParent, hMenu,
    hInstance, lpParam)
}

instead of going to a completely vertical layout.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions